aboutsummaryrefslogtreecommitdiff
path: root/plugin/auto/watcher_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/auto/watcher_test.go')
-rw-r--r--plugin/auto/watcher_test.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugin/auto/watcher_test.go b/plugin/auto/watcher_test.go
index 1d707d747..a7013448b 100644
--- a/plugin/auto/watcher_test.go
+++ b/plugin/auto/watcher_test.go
@@ -2,7 +2,7 @@ package auto
import (
"os"
- "path"
+ "path/filepath"
"regexp"
"testing"
)
@@ -39,7 +39,7 @@ func TestWatcher(t *testing.T) {
}
// Now remove one file, rescan and see if it's gone.
- if err := os.Remove(path.Join(tempdir, "db.example.com")); err != nil {
+ if err := os.Remove(filepath.Join(tempdir, "db.example.com")); err != nil {
t.Fatal(err)
}
@@ -78,15 +78,15 @@ func TestSymlinks(t *testing.T) {
a.Walk()
// Now create a duplicate file in a subdirectory and repoint the symlink
- if err := os.Remove(path.Join(tempdir, "db.example.com")); err != nil {
+ if err := os.Remove(filepath.Join(tempdir, "db.example.com")); err != nil {
t.Fatal(err)
}
- dataDir := path.Join(tempdir, "..data")
+ dataDir := filepath.Join(tempdir, "..data")
if err = os.Mkdir(dataDir, 0755); err != nil {
t.Fatal(err)
}
- newFile := path.Join(dataDir, "db.example.com")
- if err = os.Symlink(path.Join(tempdir, "db.example.org"), newFile); err != nil {
+ newFile := filepath.Join(dataDir, "db.example.com")
+ if err = os.Symlink(filepath.Join(tempdir, "db.example.org"), newFile); err != nil {
t.Fatal(err)
}