diff --git a/docs_test.go b/docs_test.go index 90240e7..232e24e 100644 --- a/docs_test.go +++ b/docs_test.go @@ -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) }