Fix walk tree test for windows

This commit is contained in:
Alexander Neumann 2015-10-28 22:02:37 +01:00
parent 5a45d95b80
commit 5958dc920b
1 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,7 @@ package restic_test
import ( import (
"os" "os"
"path/filepath" "path/filepath"
"strings"
"testing" "testing"
"time" "time"
@ -1355,7 +1356,8 @@ func TestDelayedWalkTree(t *testing.T) {
i := 0 i := 0
for job := range treeJobs { for job := range treeJobs {
if job.Path != walktreeTestItems[i] { expectedPath := filepath.Join(strings.Split(walktreeTestItems[i], "/")...)
if job.Path != expectedPath {
t.Fatalf("expected path %q (%v), got %q", walktreeTestItems[i], i, job.Path) t.Fatalf("expected path %q (%v), got %q", walktreeTestItems[i], i, job.Path)
} }
i++ i++