Skip to content

Commit

Permalink
JACOBIN-300 Fix to test to reflect error msg cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
platypusguy committed Aug 7, 2023
1 parent 56f0fec commit 72c50e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jvm/arrays_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ func TestAnewrrayInvalidSize(t *testing.T) {
}

msg := err.Error()
if !(msg == "ANEWARRAY: invalid size for an array") {
if !(msg == "ANEWARRAY: Invalid size for array") {
t.Errorf("ANEWARRAY: Expecting different error msg, got %s", msg)
}
}
Expand Down

0 comments on commit 72c50e0

Please sign in to comment.