File tree Expand file tree Collapse file tree 1 file changed +13
-11
lines changed
Expand file tree Collapse file tree 1 file changed +13
-11
lines changed Original file line number Diff line number Diff line change 1616class 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' :
You can’t perform that action at this time.
0 commit comments