Skip to content

Commit

Permalink
fix: switch args assert.Equal()
Browse files Browse the repository at this point in the history
  • Loading branch information
harry-hov committed Jul 27, 2023
1 parent 5c9af0e commit 58f6ffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnovm/pkg/gnomod/gnomod_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func TestCreateGnoModFile(t *testing.T) {
// Verify gno.mod file
bz, err := os.ReadFile(filepath.Join(dirPath, "gno.mod"))
assert.NoError(t, err)
assert.Equal(t, string(bz), tc.out)
assert.Equal(t, tc.out, string(bz))
})
}
}

0 comments on commit 58f6ffa

Please sign in to comment.