From 87f4ad106a9374b108b77b6c38602dd7dcd97b46 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 27 Dec 2016 15:51:05 +0000 Subject: [PATCH] Fix the tests correctly this time (hopefully). --- tests/tester.nim | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tests/tester.nim b/tests/tester.nim index 19e7943..4ac3ce7 100644 --- a/tests/tester.nim +++ b/tests/tester.nim @@ -51,8 +51,8 @@ test "can build with #head and versioned package (#289)": test "can validate package structure (#144)": # Clear nimble dir. - #removeDir(installDir) - #createDir(installDir) + removeDir(installDir) + createDir(installDir) # Test that no warnings are produced for correctly structured packages. for package in ["a", "b", "c"]: @@ -86,10 +86,6 @@ test "can validate package structure (#144)": else: assert false - # Clear nimble dir. - removeDir(installDir) - createDir(installDir) - test "issue 129 (installing commit hash)": let arguments = @["install", "-y", "https://github.com/nimble-test/packagea.git@#1f9cb289c89"]