We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84df87e commit 596ccc4Copy full SHA for 596ccc4
src/test/java/org/scijava/script/ScriptInfoTest.java
@@ -94,7 +94,7 @@ public void testParameterParsing() throws Exception {
94
final Object output = scriptModule.getOutput("result");
95
96
if (output == null || !(output instanceof Integer)) fail();
97
- assertEquals(3, ((Integer) output).intValue());
+ else assertEquals(3, ((Integer) output).intValue());
98
}
99
100
/** Tests {@link ScriptInfo#getVersion()}. */
0 commit comments