diff options
-rw-r--r-- | commands/root_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/commands/root_test.go b/commands/root_test.go index 840bedda..c26964d7 100644 --- a/commands/root_test.go +++ b/commands/root_test.go @@ -7,7 +7,6 @@ import ( "io/ioutil" "os" "path/filepath" - "strings" "testing" "github.com/MichaelMure/git-bug/commands" @@ -65,7 +64,7 @@ func requireGoldenFileEqual(t *testing.T, path string, act []byte) { t.Helper() // Replace Windows line terminators - act = []byte(strings.ReplaceAll(string(act), "\r\n", "\n")) + // act = []byte(strings.ReplaceAll(string(act), "\r\n", "\n")) path = filepath.Join("testdata", path) |