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 (
"os"
"path/filepath"
"strings"
"testing"
"time"
@ -1355,7 +1356,8 @@ func TestDelayedWalkTree(t *testing.T) {
i := 0
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)
}
i++