File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -109,6 +109,7 @@ def test_voice_create_webhook(self):
109
109
"self": "/webhooks/534e1848-235f-482d-983d-e3e11a04f58a"
110
110
}
111
111
}'''
112
+
112
113
create_webhook_request = VoiceCreateWebhookRequest (url = "https://example.com/" , title = "FooBar" , token = "foobar" )
113
114
created_webhook = Client ('' , http_client ).voice_create_webhook (create_webhook_request )
114
115
@@ -152,7 +153,7 @@ def test_voice_update_webhook(self):
152
153
"self": "/webhooks/534e1848-235f-482d-983d-e3e11a04f58a"
153
154
}
154
155
}'''
155
- webhook_id = 'webhook-id '
156
+ webhook_id = '534e1848-235f-482d-983d-e3e11a04f58a '
156
157
update_webhook_request = VoiceUpdateWebhookRequest (title = "FooBar" , token = "foobar" )
157
158
updated_webhook = Client ('' , http_client ).voice_update_webhook (webhook_id , update_webhook_request )
158
159
@@ -164,7 +165,7 @@ def test_voice_update_webhook(self):
164
165
def test_voice_delete_webhook (self ):
165
166
http_client = Mock ()
166
167
http_client .request .return_value = ''
167
- webhook_id = 'webhook-id '
168
+ webhook_id = '534e1848-235f-482d-983d-e3e11a04f58a '
168
169
Client ('' , http_client ).voice_delete_webhook (webhook_id )
169
170
170
171
http_client .request .assert_called_once_with (
You can’t perform that action at this time.
0 commit comments