Skip to content
Snippets Groups Projects
Commit 227ae5e8 authored by Matt Wala's avatar Matt Wala
Browse files

flake8 fix

parent 88086e2f
No related branches found
No related tags found
1 merge request!4PersistentDict cleanup; create WriteOncePersistentDict
...@@ -261,7 +261,7 @@ def test_write_once_persistent_dict_cache_collisions(): ...@@ -261,7 +261,7 @@ def test_write_once_persistent_dict_cache_collisions():
key2 = PDictTestingKeyOrValue(2, hash_key=0) key2 = PDictTestingKeyOrValue(2, hash_key=0)
pdict[key1] = 1 pdict[key1] = 1
# check lookup # check lookup
with pytest.warns(UserWarning): with pytest.warns(UserWarning):
with pytest.raises(NoSuchEntryError): with pytest.raises(NoSuchEntryError):
pdict[key2] pdict[key2]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment