aboutsummaryrefslogtreecommitdiff
path: root/main_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'main_test.go')
-rw-r--r--main_test.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/main_test.go b/main_test.go
index 57db053..27a3d65 100644
--- a/main_test.go
+++ b/main_test.go
@@ -4,6 +4,8 @@ import (
"log"
"os"
"testing"
+
+ "github.com/n-peugnet/dna-backup/logger"
)
func TestMain(m *testing.M) {
@@ -14,7 +16,7 @@ func TestMain(m *testing.M) {
}
func setup() {
- log.SetFlags(log.Lshortfile)
+ logger.SetFlags(log.Lshortfile)
}
func shutdown() {}