diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2020-08-30 14:33:08 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2020-08-30 14:33:08 +0000 |
| commit | 406034d41a764f6fe24374d40c95e79d295f6e80 (patch) | |
| tree | fbab3150fdcbfb555dc9df0354630fade9cc61a5 /test/engine/test_execute.py | |
| parent | 34dfd7eb88f42e259d3049dbbc823a97b11cb555 (diff) | |
| parent | 672087176eaf3d0e867c6b5c67bfea3c713be42e (diff) | |
| download | sqlalchemy-406034d41a764f6fe24374d40c95e79d295f6e80.tar.gz | |
Merge "internal test framework files for standardization of is_not/not_in;"
Diffstat (limited to 'test/engine/test_execute.py')
| -rw-r--r-- | test/engine/test_execute.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/engine/test_execute.py b/test/engine/test_execute.py index 6f71f46c6..b9dd920a9 100644 --- a/test/engine/test_execute.py +++ b/test/engine/test_execute.py @@ -39,7 +39,7 @@ from sqlalchemy.testing import expect_warnings from sqlalchemy.testing import fixtures from sqlalchemy.testing import is_ from sqlalchemy.testing import is_false -from sqlalchemy.testing import is_not_ +from sqlalchemy.testing import is_not from sqlalchemy.testing import is_true from sqlalchemy.testing import mock from sqlalchemy.testing.assertsql import CompiledSQL @@ -2505,7 +2505,7 @@ class HandleErrorTest(fixtures.TestBase): for crec in crecs: if crec is target_crec or not set_to_false: - is_not_(crec.connection, crec.get_connection()) + is_not(crec.connection, crec.get_connection()) else: is_(crec.connection, crec.get_connection()) @@ -2870,7 +2870,7 @@ class HandleInvalidatedOnConnectTest(fixtures.TestBase): c2 = eng.connect() dbapi_conn_two = c2.connection.connection - is_not_(dbapi_conn_one, dbapi_conn_two) + is_not(dbapi_conn_one, dbapi_conn_two) eq_( m1.mock_calls, |
