Skip to content

Commit

Permalink
fixup! Revert to use gopkg.in/ini.v1 when saving config file
Browse files Browse the repository at this point in the history
  • Loading branch information
gandarez committed Nov 28, 2021
1 parent f0d5953 commit 8c11465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/config_test.go
Expand Up @@ -266,7 +266,7 @@ func TestWrite_NoMultilineSideEffects(t *testing.T) {
expected, err := os.ReadFile("testdata/wakatime-multiline-expected.cfg")
require.NoError(t, err)

assert.Equal(t, strings.ReplaceAll(string(expected), "\r", ""), string(actual))
assert.Equal(t, string(expected), strings.ReplaceAll(string(actual), "\r", ""))
}

func TestWriteErr(t *testing.T) {
Expand Down

0 comments on commit 8c11465

Please sign in to comment.