diff options
Diffstat (limited to 'test/sql/test_compiler.py')
-rw-r--r-- | test/sql/test_compiler.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/sql/test_compiler.py b/test/sql/test_compiler.py index 3e7c3d9a3..e7504a748 100644 --- a/test/sql/test_compiler.py +++ b/test/sql/test_compiler.py @@ -3092,7 +3092,6 @@ class CRUDTest(fixtures.TestBase, AssertsCompiledSQL): 'x2': 1, 'y': 2}) - def test_labels_no_collision(self): t = table('foo', column('id'), column('foo_id')) @@ -3856,7 +3855,7 @@ class CoercionTest(fixtures.TestBase, AssertsCompiledSQL): def test_val_is_null_coerced(self): t = self._fixture() - self.assert_compile(and_(t.c.id == None), + self.assert_compile(and_(t.c.id == None), # noqa "foo.id IS NULL") def test_val_and_None(self): |