diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2020-10-30 15:14:18 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2020-10-30 15:14:18 +0000 |
commit | 841eb216644202567ebddfc0badc51a3a35e98c3 (patch) | |
tree | 40f930139e5a5fb707c3c3090bd2aabb455dd9cb /lib/sqlalchemy/testing/suite/test_select.py | |
parent | 163a97c6d57db09d6405124dae9b877bc9629721 (diff) | |
parent | 9ddbd585a62ff1ad56e9ee6fef5898ced1932a88 (diff) | |
download | sqlalchemy-841eb216644202567ebddfc0badc51a3a35e98c3.tar.gz |
Merge "Apply underscore naming to several more operators"
Diffstat (limited to 'lib/sqlalchemy/testing/suite/test_select.py')
-rw-r--r-- | lib/sqlalchemy/testing/suite/test_select.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/testing/suite/test_select.py b/lib/sqlalchemy/testing/suite/test_select.py index ee9db9111..d15fae3c4 100644 --- a/lib/sqlalchemy/testing/suite/test_select.py +++ b/lib/sqlalchemy/testing/suite/test_select.py @@ -1349,7 +1349,7 @@ class IsOrIsNotDistinctFromTest(fixtures.TablesTest): id_="iaaa", argnames="col_a_value, col_b_value, expected_row_count_for_is", ) - def test_is_or_isnot_distinct_from( + def test_is_or_is_not_distinct_from( self, col_a_value, col_b_value, expected_row_count_for_is, connection ): tbl = self.tables.is_distinct_test @@ -1371,7 +1371,7 @@ class IsOrIsNotDistinctFromTest(fixtures.TablesTest): 1 if expected_row_count_for_is == 0 else 0 ) result = connection.execute( - tbl.select(tbl.c.col_a.isnot_distinct_from(tbl.c.col_b)) + tbl.select(tbl.c.col_a.is_not_distinct_from(tbl.c.col_b)) ).fetchall() eq_( len(result), |