Skip to content

Commit

Permalink
Wording
Browse files Browse the repository at this point in the history
Co-authored-by: GregoryTravis <[email protected]>
  • Loading branch information
JaroslavTulach and GregoryTravis authored Aug 8, 2024
1 parent 843c893 commit 412c623
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public void warningOnAnError() throws Exception {
var module = ctx.eval(LanguageInfo.ID, code);
var errorWithWarning = module.invokeMember(MethodNames.Module.EVAL_EXPRESSION, "err_warn");
assertFalse("Something is returned", errorWithWarning.isNull());
assertTrue("But is represents an exception object", errorWithWarning.isException());
assertTrue("But it represents an exception object", errorWithWarning.isException());
assertEquals(
"Standard.Base.Error.Error", errorWithWarning.getMetaObject().getMetaQualifiedName());
}
Expand Down

0 comments on commit 412c623

Please sign in to comment.