From c46aead8c94c6470f5962b71b485415b7177f599 Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Wed, 27 Sep 2017 00:00:00 -0500 Subject: [PATCH] Fix value used for testing store_if_not_present() --- test/test_persistent_dict.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_persistent_dict.py b/test/test_persistent_dict.py index 6dc8a13..4256a24 100644 --- a/test/test_persistent_dict.py +++ b/test/test_persistent_dict.py @@ -292,7 +292,7 @@ def test_write_once_persistent_dict_cache_collisions(): pdict[key2] = 1 # check store_if_not_present - pdict.store_if_not_present(key2, 1) + pdict.store_if_not_present(key2, 2) assert pdict[key1] == 1 finally: -- GitLab