Skip to content

Commit

Permalink
Fix test case for HStore decode
Browse files Browse the repository at this point in the history
  • Loading branch information
aaliddell authored and elprans committed Jul 18, 2020
1 parent 8141b93 commit f3013b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/usage.rst
Expand Up @@ -321,7 +321,7 @@ be registered on a connection using :meth:`Connection.set_builtin_type_codec()
await conn.set_builtin_type_codec(
'hstore', codec_name='pg_contrib.hstore')
result = await conn.fetchval("SELECT 'a=>1,b=>2'::hstore")
assert result == {'a': 1, 'b': 2}
assert result == {'a': '1', 'b': '2'}
asyncio.get_event_loop().run_until_complete(run())
Expand Down

0 comments on commit f3013b7

Please sign in to comment.