From 50d377d9febb400f124c68eea11cf6a5f4b75ff6 Mon Sep 17 00:00:00 2001 From: Audrius Butkevicius Date: Tue, 28 Apr 2015 00:09:44 +0100 Subject: [PATCH] Fix integration tests --- test/cli_test.go | 3 ++- test/conflict_test.go | 3 ++- test/util.go | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/test/cli_test.go b/test/cli_test.go index 32a2d18f4..d181c9095 100644 --- a/test/cli_test.go +++ b/test/cli_test.go @@ -11,9 +11,10 @@ package integration import ( "os" "os/exec" - "path/filepath" "testing" "time" + + "github.com/syncthing/syncthing/internal/osutil" ) func TestCLIReset(t *testing.T) { diff --git a/test/conflict_test.go b/test/conflict_test.go index 2d70b867e..91882df99 100644 --- a/test/conflict_test.go +++ b/test/conflict_test.go @@ -12,9 +12,10 @@ import ( "io/ioutil" "log" "os" - "path/filepath" "testing" "time" + + "github.com/syncthing/syncthing/internal/osutil" ) func TestConflict(t *testing.T) { diff --git a/test/util.go b/test/util.go index 10a9eb1c4..24012aee2 100644 --- a/test/util.go +++ b/test/util.go @@ -24,6 +24,7 @@ import ( "strings" "time" + "github.com/syncthing/syncthing/internal/osutil" "github.com/syncthing/syncthing/internal/symlinks" )