summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamian Dimmich <damian@tauri-tec.com>2014-06-28 23:24:36 +0400
committerDamian Dimmich <damian@tauri-tec.com>2014-06-28 23:24:36 +0400
commit7f402761d91a79afd01072d7ab6e83bf64106ddc (patch)
tree69244d53bd89a0e91111bd1552643c2fa3f5881a
parent4eca136e0914252a291046d8c2ed281fe6c56d94 (diff)
downloadsqlalchemy-7f402761d91a79afd01072d7ab6e83bf64106ddc.tar.gz
it's OK to pass a dict in - it does the right thing, no need to quote it
in the tests.
-rw-r--r--test/dialect/postgresql/test_types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/postgresql/test_types.py b/test/dialect/postgresql/test_types.py
index 6e6e22623..d4d7d3766 100644
--- a/test/dialect/postgresql/test_types.py
+++ b/test/dialect/postgresql/test_types.py
@@ -2011,7 +2011,7 @@ class JSONBTest(JSONTest):
def test_where_contains(self):
self._test_where(
- self.jsoncol.contains('{"k1": "r1v1"}'),
+ self.jsoncol.contains({"k1": "r1v1"}),
"test_table.test_column @> %(test_column_1)s"
)