fix github-actions for windows
This commit is contained in:
parent
9c3c74b491
commit
300b9985aa
@ -80,7 +80,7 @@ func expectFileContent(t *testing.T, file, expected string) {
|
||||
data, err := ioutil.ReadFile(file)
|
||||
// Ignore windows line endings
|
||||
// TODO: Replace with bytes.ReplaceAll when support for Go 1.11 is dropped
|
||||
expected = string(bytes.Replace([]byte(expected), []byte("\r\n"), []byte("\n"), -1))
|
||||
data = bytes.Replace(data, []byte("\r\n"), []byte("\n"), -1)
|
||||
expect(t, err, nil)
|
||||
expect(t, string(data), expected)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user