fix test on windows
This commit is contained in:
parent
0f445dff07
commit
a836268490
|
@ -3,6 +3,7 @@ package ansiblelocal
|
||||||
import (
|
import (
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
@ -38,7 +39,7 @@ func TestProvisionerPrepare_Defaults(t *testing.T) {
|
||||||
t.Fatalf("err: %s", err)
|
t.Fatalf("err: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !strings.HasPrefix(p.config.StagingDir, DefaultStagingDir) {
|
if !strings.HasPrefix(filepath.ToSlash(p.config.StagingDir), DefaultStagingDir) {
|
||||||
t.Fatalf("unexpected staging dir %s, expected %s",
|
t.Fatalf("unexpected staging dir %s, expected %s",
|
||||||
p.config.StagingDir, DefaultStagingDir)
|
p.config.StagingDir, DefaultStagingDir)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue