Skip to content

Commit 29f4119

Browse files
committed
forgot quotes
1 parent 700e800 commit 29f4119

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/bandwidth/sdk/unit/models/bxml/StopStreamVerbTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public void stopStreamVerbWorks() throws JAXBException {
3131
@Test
3232
public void stopStreamVerbWithWaitWorks() throws JAXBException {
3333
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>";
34+
String expectedBxml = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><Bxml><StopStream name=\"name\" wait=\"true\"/></Bxml>";
3535

3636
assertThat(new Bxml().with(new StopStream("name", true)).toBxml(jaxbContext), is(expectedBxml));
3737
};

0 commit comments

Comments
 (0)