From 27dab3c989968e84ce7bf299f57c42c7a87f9597 Mon Sep 17 00:00:00 2001 From: Alex Ling Date: Sun, 31 May 2020 15:26:11 +0000 Subject: [PATCH] Disable initial user creation in spec --- spec/spec_helper.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/spec_helper.cr b/spec/spec_helper.cr index a8bc5ab..578ae42 100644 --- a/spec/spec_helper.cr +++ b/spec/spec_helper.cr @@ -45,7 +45,7 @@ end def with_storage with_default_config do temp_db = get_tempfile "mango-test-db" - storage = Storage.new temp_db.path + storage = Storage.new temp_db.path, false clear = yield storage, temp_db.path if clear == true temp_db.delete