From 1b45b8c799d50b1413631399c2c63a5bceb6e688 Mon Sep 17 00:00:00 2001 From: Matt Wala <wala1@illinois.edu> Date: Sat, 23 Sep 2017 17:08:02 -0500 Subject: [PATCH] Fix directory. --- 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 339f0e5..53afd77 100644 --- a/test/test_persistent_dict.py +++ b/test/test_persistent_dict.py @@ -136,7 +136,7 @@ def test_persistent_dict_synchronization(): def test_persistent_dict_cache_collisions(): try: tmpdir = tempfile.mkdtemp() - pdict = PersistentDict(tmpdir) + pdict = PersistentDict("pytools-test", container_dir=tmpdir) key1 = PDictTestingKeyOrValue(1, hash_key=0) key2 = PDictTestingKeyOrValue(2, hash_key=0) -- GitLab