Skip to content

Commit

Permalink
Ensure serde integration tests return the same type
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkins committed Dec 4, 2016
1 parent be8977c commit 164f4cf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pymemcache/test/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ def check(value):
client.set(b'key', value, noreply=False)
result = client.get(b'key')
assert result == value
assert type(result) is type(value)

client = client_class((host, port), serializer=python_memcache_serializer,
deserializer=python_memcache_deserializer,
Expand Down

0 comments on commit 164f4cf

Please sign in to comment.