Skip to content

Commit

Permalink
8267698: [lworld] [lw3] runtime\exceptionMsgs\NullPointerException\Nu…
Browse files Browse the repository at this point in the history
…llPointerExceptionTest.java test fails because of new error message
  • Loading branch information
fparain committed May 25, 2021
1 parent 340ecec commit 25983c7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -304,7 +304,7 @@ public void testFailedAction() {
} catch (NullPointerException e) {
checkMessage(e, "oa1[0] = new Object();", e.getMessage(),
"Cannot store to object array because " +
(hasDebugInfo ? "\"oa1\"" : "\"<local3>\"") + " is null");
(hasDebugInfo ? "\"oa1\"" : "\"<local3>\"") + " is null or is a null-free array and there's an attempt to store null in it");
}
// bastore (boolean)
try {
Expand Down

0 comments on commit 25983c7

Please sign in to comment.