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 33a5736 commit 3a6006bCopy full SHA for 3a6006b
framework/fel/java/services/tool-service/src/test/java/modelengine/fel/tool/support/HttpToolTest.java
@@ -176,7 +176,9 @@ void shouldReturnNull() {
176
Tool.Info info = readToolInfo("void.json");
177
Tool tool = createTool(info);
178
179
- String result = cast(tool.execute());
+ Object result = tool.execute();
180
+ System.out.println("result: " + result);
181
+ System.out.println("result.getClass(): " + (result != null ? result.getClass() : null));
182
assertThat(result).isEqualTo(null);
183
}
184
0 commit comments