Skip to content

Commit edb0acd

Browse files
committed
fix transcription test
1 parent 6155baf commit edb0acd

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/StartTranscriptionVerbTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class StartTranscriptionVerbTest {
4949
@Test
5050
public void startTranscriptionVerbWorks() throws JAXBException {
5151
JAXBContext jaxbContext = JAXBContext.newInstance(Bxml.class);
52-
String expectedBxml = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><Bxml><StartTranscription name=\"test_transcription\" tracks=\"INBOUND\" destination=\"testurl.com\" transcriptionEventUrl=\"eventurl.com\" transcriptionEventMethod=\"POST\" username=\"user\" password=\"pass\"><CustomParam name=\"name1\" value=\"value1\"/><CustomParam name=\"name2\" value=\"value2\"/></StartTranscription></Bxml>";
52+
String expectedBxml = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><Bxml><StartTranscription name=\"test_transcription\" tracks=\"INBOUND\" destination=\"testurl.com\" transcriptionEventUrl=\"eventurl.com\" transcriptionEventMethod=\"POST\" username=\"user\" password=\"pass\" stabilized=\"true\"><CustomParam name=\"name1\" value=\"value1\"/><CustomParam name=\"name2\" value=\"value2\"/></StartTranscription></Bxml>";
5353

5454
assertThat(new Bxml().with(startTranscription).toBxml(jaxbContext), is(expectedBxml));
5555
}

0 commit comments

Comments
 (0)