[tests] fix store tests

This commit is contained in:
Tobias Witek 2020-06-20 14:58:49 +02:00
parent aac604f94c
commit a56b3db813

View file

@ -34,7 +34,7 @@ def test_unused_keys(store):
store.set("key 1", "value x")
store.set("key 2", "value y")
assert store.unused_keys() == sorted(["key 1", "key 2"])
assert sorted(store.unused_keys()) == sorted(["key 1", "key 2"])
store.get("key 2")