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

Check not found in write once persistent dict.

parent 1b45b8c7
No related branches found
No related tags found
1 merge request!4PersistentDict cleanup; create WriteOncePersistentDict
......@@ -192,6 +192,10 @@ def test_write_once_persistent_dict_storage_and_lookup(in_mem_cache_size):
with pytest.raises(ReadOnlyEntryError):
pdict[0] = 2
# check not found
with pytest.raises(NoSuchEntryError):
pdict[1]
finally:
shutil.rmtree(tmpdir)
......
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