We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c048b7 commit b7222f0Copy full SHA for b7222f0
1 file changed
tests/test_voice_webhook.py
@@ -123,9 +123,6 @@ def test_voice_create_webhook_request_validation(self):
123
token = "FooBarToken"
124
blank_string = ' '
125
126
- with self.assertRaises(ValidationError):
127
- VoiceCreateWebhookRequest(url=url)
128
-
129
with self.assertRaises(ValidationError):
130
VoiceCreateWebhookRequest(title=title)
131
@@ -139,10 +136,6 @@ def test_voice_create_webhook_request_validation(self):
139
136
140
137
request.url = blank_string
141
138
142
- request.title = title + title
143
144
- request.title = blank_string
145
146
def test_voice_update_webhook(self):
147
http_client = Mock()
148
http_client.request.return_value = '''{
0 commit comments