From 7f402761d91a79afd01072d7ab6e83bf64106ddc Mon Sep 17 00:00:00 2001 From: Damian Dimmich Date: Sat, 28 Jun 2014 23:24:36 +0400 Subject: [PATCH] it's OK to pass a dict in - it does the right thing, no need to quote it in the tests. --- test/dialect/postgresql/test_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dialect/postgresql/test_types.py b/test/dialect/postgresql/test_types.py index 6e6e226236..d4d7d37667 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" ) -- 2.47.3