]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- add a forwards-test here as well
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 21 Jan 2016 20:32:53 +0000 (15:32 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 21 Jan 2016 20:33:18 +0000 (15:33 -0500)
(cherry picked from commit 38958f7b3f3e6009c419ba8e021f2b14c1f2b89a)

test/sql/test_resultset.py

index bd68c7fcc434bd003a68d1bd8319b27952288cb9..f3c1694090ce8ca5e52dba8325b5862904f56e78 100644 (file)
@@ -380,6 +380,10 @@ class ResultProxyTest(fixtures.TablesTest):
         if testing.against("sqlite < 3.10.0"):
             eq_(r['users.user_id'], 1)
             eq_(r['users.user_name'], "john")
+        else:
+            not_in_('users.user_id', r)
+            not_in_('users.user_name', r)
+
         eq_(list(r.keys()), ["user_id", "user_name"])
 
     def test_column_accessor_labels_w_dots(self):