From 6145a76f3c7bf0876b73a825a2239719cf2e0ba7 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 8 Sep 2011 10:46:14 -0400 Subject: [PATCH] Ensure that dumping doesn't crash for populated ConfigSettings. --- h5config/test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/h5config/test.py b/h5config/test.py index a0e2182..d49bdcc 100644 --- a/h5config/test.py +++ b/h5config/test.py @@ -179,6 +179,7 @@ def _file_storage_tests(storage): assert not nd, nd for key,value in _ALTERNATIVES.items(): c[key] = value + c.dump() c.save() na = dict(_non_alternatives(c)) assert not na, na -- 2.26.2