diff options
Diffstat (limited to 'test/orm/test_dynamic.py')
-rw-r--r-- | test/orm/test_dynamic.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/orm/test_dynamic.py b/test/orm/test_dynamic.py index 0cedd5604..b861a9fe5 100644 --- a/test/orm/test_dynamic.py +++ b/test/orm/test_dynamic.py @@ -742,16 +742,16 @@ class UOWTest( eq_( testing.db.scalar( select([func.count("*")]).where( - addresses.c.user_id == None # noqa - ) + addresses.c.user_id == None + ) # noqa ), 6, ) eq_( testing.db.scalar( select([func.count("*")]).where( - addresses.c.user_id != None # noqa - ) + addresses.c.user_id != None + ) # noqa ), 0, ) |