mirror of https://github.com/spf13/viper.git
Fixed tests not passing on Windows
This commit is contained in:
parent
5ed0fc31f7
commit
3968772673
|
@ -11,8 +11,9 @@ import (
|
|||
"io"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path"
|
||||
path "path/filepath"
|
||||
"reflect"
|
||||
"runtime"
|
||||
"sort"
|
||||
"strings"
|
||||
"testing"
|
||||
|
@ -183,10 +184,16 @@ func initHcl() {
|
|||
func initDirs(t *testing.T) (string, string, func()) {
|
||||
|
||||
var (
|
||||
testDirs = []string{`a a`, `b`, `c\c`, `D_`}
|
||||
testDirs []string
|
||||
config = `improbable`
|
||||
)
|
||||
|
||||
if runtime.GOOS == "windows" {
|
||||
testDirs = []string{`a a`, `b`, `D_`}
|
||||
} else {
|
||||
testDirs = []string{`a a`, `b`, `c\c`, `D_`}
|
||||
}
|
||||
|
||||
root, err := ioutil.TempDir("", "")
|
||||
|
||||
cleanup := true
|
||||
|
|
Loading…
Reference in New Issue