From 580657f0680024980d4df286d018da626ed757e1 Mon Sep 17 00:00:00 2001 From: jonathan vanasco Date: Wed, 28 Oct 2020 15:58:55 -0400 Subject: while working on #5435, I found some misses from the previous PR for #5429 Change-Id: I0be15f6234c74302734672450a3275add762bdb8 --- lib/sqlalchemy/testing/suite/test_select.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/sqlalchemy/testing') diff --git a/lib/sqlalchemy/testing/suite/test_select.py b/lib/sqlalchemy/testing/suite/test_select.py index d15fae3c4..954900f67 100644 --- a/lib/sqlalchemy/testing/suite/test_select.py +++ b/lib/sqlalchemy/testing/suite/test_select.py @@ -1367,7 +1367,7 @@ class IsOrIsNotDistinctFromTest(fixtures.TablesTest): expected_row_count_for_is, ) - expected_row_count_for_isnot = ( + expected_row_count_for_is_not = ( 1 if expected_row_count_for_is == 0 else 0 ) result = connection.execute( @@ -1375,5 +1375,5 @@ class IsOrIsNotDistinctFromTest(fixtures.TablesTest): ).fetchall() eq_( len(result), - expected_row_count_for_isnot, + expected_row_count_for_is_not, ) -- cgit v1.2.1