diff options
author | Damian Dimmich <damian@tauri-tec.com> | 2014-06-28 23:24:36 +0400 |
---|---|---|
committer | Damian Dimmich <damian@tauri-tec.com> | 2014-06-28 23:24:36 +0400 |
commit | 7f402761d91a79afd01072d7ab6e83bf64106ddc (patch) | |
tree | 69244d53bd89a0e91111bd1552643c2fa3f5881a | |
parent | 4eca136e0914252a291046d8c2ed281fe6c56d94 (diff) | |
download | sqlalchemy-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.py | 2 |
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" ) |