diff --git a/test/sync_test.py b/test/sync_test.py index 2bff992..c7c3979 100644 --- a/test/sync_test.py +++ b/test/sync_test.py @@ -76,10 +76,12 @@ optParser.add_option("-c", "--clean", action="store_true", dest="clean") (options, args) = optParser.parse_args() if options.clean: + rmrf("TestInbox") rmrf("Alice") rmrf("Bob") else: + os.makedirs("TestInbox", exist_ok=True) setup("Alice") setup("Bob")