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 664849a commit d98b915Copy full SHA for d98b915
assistant/src/test/java/com/ibm/watson/assistant/v1/AssistantServiceIT.java
@@ -84,8 +84,7 @@ public void testRuntimeResponseGenericRuntimeResponseTypeText() {
84
MessageResponse response = service.message(options).execute().getResult();
85
System.out.println(response);
86
87
- RuntimeResponseGenericRuntimeResponseTypeText runtimeResponseGenericRuntimeResponseTypeText =
88
- (RuntimeResponseGenericRuntimeResponseTypeText) response.getOutput().getGeneric().get(0);
+ RuntimeResponseGeneric runtimeResponseGenericRuntimeResponseTypeText = response.getOutput().getGeneric().get(0);
89
90
assertNotNull(runtimeResponseGenericRuntimeResponseTypeText);
91
}
0 commit comments