From 8724aaf18312e54750540a9578e00d61b1c545d8 Mon Sep 17 00:00:00 2001 From: Eyal Posener Date: Thu, 14 Nov 2019 06:51:44 +0200 Subject: V2 --- common_test.go | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 common_test.go (limited to 'common_test.go') diff --git a/common_test.go b/common_test.go deleted file mode 100644 index 38fe5f1..0000000 --- a/common_test.go +++ /dev/null @@ -1,26 +0,0 @@ -package complete - -import ( - "os" - "sync" - "testing" -) - -var once = sync.Once{} - -func initTests() { - once.Do(func() { - // Set debug environment variable so logs will be printed - if testing.Verbose() { - os.Setenv(envDebug, "1") - // refresh the logger with environment variable set - Log = getLogger() - } - - // Change to tests directory for testing completion of files and directories - err := os.Chdir("./tests") - if err != nil { - panic(err) - } - }) -} -- cgit v1.2.3