From: Mike Bayer Date: Wed, 30 Mar 2016 22:59:01 +0000 (-0400) Subject: - limit this to sqlite for now X-Git-Tag: rel_1_1_0b1~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fdb65744d44ae9aa9d9d9635f830151f9454f319;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - limit this to sqlite for now --- diff --git a/test/sql/test_resultset.py b/test/sql/test_resultset.py index 3669390d5a..ba85fb82e3 100644 --- a/test/sql/test_resultset.py +++ b/test/sql/test_resultset.py @@ -1010,6 +1010,7 @@ class ResultProxyTest(fixtures.TablesTest): eq_(row[-1], 'Uno') eq_(row[1:0:-1], ('Uno',)) + @testing.only_on("sqlite") def test_rowproxy_getitem_indexes_raw(self): row = testing.db.execute("select 'One' as key, 'Uno' as value").first() eq_(row['key'], 'One')