diff options
| author | jonathan vanasco <jonathan@2xlp.com> | 2020-08-24 18:53:31 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-08-29 12:05:58 -0400 |
| commit | 672087176eaf3d0e867c6b5c67bfea3c713be42e (patch) | |
| tree | 659bc160dd94230c6fc94189617f414122de241d /test/sql/test_computed.py | |
| parent | 317f2e1be2b06cdc12bc84510eb743d9752763dd (diff) | |
| download | sqlalchemy-672087176eaf3d0e867c6b5c67bfea3c713be42e.tar.gz | |
internal test framework files for standardization of is_not/not_in;
this is safe for 1.3.x
Change-Id: Icba38fdc20f5d8ac407383a4278ccb346e09af38
Diffstat (limited to 'test/sql/test_computed.py')
| -rw-r--r-- | test/sql/test_computed.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/test_computed.py b/test/sql/test_computed.py index 56aac488f..886aa13b9 100644 --- a/test/sql/test_computed.py +++ b/test/sql/test_computed.py @@ -11,7 +11,7 @@ from sqlalchemy.testing import AssertsCompiledSQL from sqlalchemy.testing import combinations from sqlalchemy.testing import fixtures from sqlalchemy.testing import is_ -from sqlalchemy.testing import is_not_ +from sqlalchemy.testing import is_not class DDLComputedTest(fixtures.TestBase, AssertsCompiledSQL): @@ -83,7 +83,7 @@ class DDLComputedTest(fixtures.TestBase, AssertsCompiledSQL): t2 = t.to_metadata(m2) comp2 = t2.c.y.server_default - is_not_(comp1, comp2) + is_not(comp1, comp2) is_(comp1.column, t.c.y) is_(t.c.y.server_onupdate, comp1) |
