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 700e800 commit 29f4119Copy full SHA for 29f4119
src/test/java/com/bandwidth/sdk/unit/models/bxml/StopStreamVerbTest.java
@@ -31,7 +31,7 @@ public void stopStreamVerbWorks() throws JAXBException {
31
@Test
32
public void stopStreamVerbWithWaitWorks() throws JAXBException {
33
JAXBContext jaxbContext = JAXBContext.newInstance(Bxml.class);
34
- String expectedBxml = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><Bxml><StopStream name=\"name\" wait=\true\"/></Bxml>";
+ String expectedBxml = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><Bxml><StopStream name=\"name\" wait=\"true\"/></Bxml>";
35
36
assertThat(new Bxml().with(new StopStream("name", true)).toBxml(jaxbContext), is(expectedBxml));
37
};
0 commit comments