Skip to content

Commit fe21d55

Browse files
fix conversation text
1 parent f00e724 commit fe21d55

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

pom.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,6 @@
194194
<aggregate>true</aggregate>
195195
<check></check>
196196
<instrumentation>
197-
<ignores>
198-
<ignore>*.model*</ignore>
199-
</ignores>
200197
<excludes>
201198
<exclude>**/*/model/*</exclude>
202199
</excludes>

src/test/java/com/ibm/watson/developer_cloud/conversation/v1_experimental/ConversationServiceIT.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
import com.ibm.watson.developer_cloud.WatsonServiceTest;
2424
import com.ibm.watson.developer_cloud.conversation.v1_experimental.model.MessageRequest;
2525
import com.ibm.watson.developer_cloud.conversation.v1_experimental.model.MessageResponse;
26-
import com.ibm.watson.developer_cloud.service.exception.BadRequestException;
2726

2827
/**
2928
* Integration test for the {@link ConversationService}.
@@ -55,7 +54,7 @@ public void setUp() throws Exception {
5554
/**
5655
* Test start a conversation without message.
5756
*/
58-
@Test(expected=BadRequestException.class)
57+
@Test(expected=IllegalArgumentException.class)
5958
public void testStartAConversationWithoutMessage() {
6059
service.message(workspaceId, null).execute();
6160
}

0 commit comments

Comments
 (0)