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 dc144fd commit 2463d34Copy full SHA for 2463d34
src/test/java/com/bandwidth/BxmlTest.java
@@ -473,13 +473,15 @@ public void testStartStream() {
473
}
474
@Test
475
public void testStopStream() {
476
- StopStream stopStream = StopStream.builder().build();
+ StopStream stopStream = StopStream.builder()
477
+ .name("test")
478
+ .build();
479
480
String response = new Response()
481
.add(stopStream)
482
.toBXML();
483
- String expected = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><Response><StopRecording/></Response>";
484
+ String expected = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><Response><StopRecording name=\"test\"/></Response>";
485
486
assertEquals("BXML strings not equal", expected, response);
487
0 commit comments