Skip to content

Commit 14e3379

Browse files
Update test_start_recording.py
1 parent b8c8a08 commit 14e3379

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

test/unit/bxml/test_start_recording.py

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,20 @@
1616
class TestRecord(unittest.TestCase):
1717

1818
def setUp(self):
19-
self.start_recording = StartRecording()
20-
self.start_recording.recording_available_url = "example.com"
21-
self.start_recording.recording_available_method = "POST"
22-
self.start_recording.transcribe = "true"
23-
self.start_recording.transcription_available_url = "transcription-example.com"
24-
self.start_recording.transcription_available_method = "POST"
25-
self.start_recording.username = "user"
26-
self.start_recording.password = "pass"
27-
self.start_recording.tag = "tag"
28-
self.start_recording.file_format = "wav"
29-
self.start_recording.multi_channel = "true"
19+
self.start_recording = StartRecording(
20+
recording_available_url = "example.com",
21+
recording_available_method = "POST",
22+
transcribe = "true",
23+
transcription_available_url = "transcription-example.com",
24+
transcription_available_method = "POST",
25+
username = "user",
26+
password = "pass",
27+
tag = "tag",
28+
file_format = "wav",
29+
multi_channel = "true"
30+
)
3031
self.test_verb = Verb(tag="test")
32+
3133

3234
def test_to_bxml(self):
3335
if os.environ['PYTHON_VERSION'] == '3.7':

0 commit comments

Comments
 (0)