Skip to content

Commit b2ca258

Browse files
committed
fix test helper func expectFileContent
1 parent 76d7576 commit b2ca258

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ func expectFileContent(t *testing.T, file, got string) {
2424
r := require.New(t)
2525
r.NoError(err)
2626
r.Equal(
27-
string(normalizeNewlines([]byte(got))),
2827
string(normalizeNewlines(data)),
28+
string(normalizeNewlines([]byte(got))),
2929
)
3030
}
3131

0 commit comments

Comments
 (0)