summaryrefslogtreecommitdiff
path: root/tests/test_sql.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_sql.py')
-rwxr-xr-xtests/test_sql.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_sql.py b/tests/test_sql.py
index 510b545..4d930cd 100755
--- a/tests/test_sql.py
+++ b/tests/test_sql.py
@@ -107,7 +107,6 @@ class IdentifierTests(ConnectingTestCase):
def test_init(self):
self.assert_(isinstance(sql.Identifier('foo'), sql.Identifier))
self.assert_(isinstance(sql.Identifier(u'foo'), sql.Identifier))
- self.assert_(isinstance(sql.Identifier(b'foo'), sql.Identifier))
self.assertRaises(TypeError, sql.Identifier, 10)
self.assertRaises(TypeError, sql.Identifier, dt.date(2016, 12, 31))
@@ -155,7 +154,6 @@ class SQLTests(ConnectingTestCase):
def test_init(self):
self.assert_(isinstance(sql.SQL('foo'), sql.SQL))
self.assert_(isinstance(sql.SQL(u'foo'), sql.SQL))
- self.assert_(isinstance(sql.SQL(b'foo'), sql.SQL))
self.assertRaises(TypeError, sql.SQL, 10)
self.assertRaises(TypeError, sql.SQL, dt.date(2016, 12, 31))