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 cd07c0d commit cf2ef5aCopy full SHA for cf2ef5a
framework/fel/java/services/tool-service/src/test/java/modelengine/fel/tool/support/HttpToolTest.java
@@ -196,7 +196,10 @@ void ApiKeyShouldReturnOk() {
196
Tool.Info info = readToolInfo("api-key-auth.json");
197
Tool tool = createTool(info);
198
199
- boolean result = cast(tool.execute("{\"name\":\"ApiKey\", \"pwd\":\"ApiKeyValue\"}"));
+ Object execute = tool.execute("{\"name\":\"ApiKey\", \"pwd\":\"ApiKeyValue\"}");
200
+ System.out.println("!!!:" + execute);
201
+ boolean result = cast(execute);
202
+
203
assertThat(result).isEqualTo(true);
204
}
205
0 commit comments