diff options
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r-- | cpp/config/TestUtil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py index bd005a4f805..f61efec002d 100644 --- a/cpp/config/TestUtil.py +++ b/cpp/config/TestUtil.py @@ -535,5 +535,5 @@ def collocatedTest(name): collocatedTestWithOptions(name, "") def cleanDbDir(path): - for filename in [ os.path.join(path, f) for f in os.listdir(path) if f != ".gitignore"]: + for filename in [ os.path.join(path, f) for f in os.listdir(path) if f != ".gitignore" and f != "DB_CONFIG" ]: os.remove(filename) |