Skip to content

Commit 3f13951

Browse files
committed
Resolve MR comments
1 parent 0e348c9 commit 3f13951

29 files changed

+63
-63
lines changed

test/models/test_add_to_conference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class TestAddToConference(unittest.TestCase):
2626

2727
def setUp(self):
2828
self.model = AddToConference(
29-
conference_id="",
29+
conference_id="TS",
3030
)
3131

3232
def test_allow_call_control(self):

test/models/test_buy_incoming_number_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class TestBuyIncomingNumberRequest(unittest.TestCase):
2626

2727
def setUp(self):
2828
self.model = BuyIncomingNumberRequest(
29-
phone_number="",
29+
phone_number="TS",
3030
)
3131

3232
def test_phone_number(self):

test/models/test_completion_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class TestCompletionRequest(unittest.TestCase):
2626

2727
def setUp(self):
2828
self.model = CompletionRequest(
29-
query="",
29+
query="TS",
3030
)
3131

3232
def test_query(self):

test/models/test_completion_result.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class TestCompletionResult(unittest.TestCase):
2626

2727
def setUp(self):
2828
self.model = CompletionResult(
29-
response="",
29+
response="TS",
3030
status=CompletionResultStatus.SUCCESS,
3131
)
3232

test/models/test_create_conference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class TestCreateConference(unittest.TestCase):
2626

2727
def setUp(self):
2828
self.model = CreateConference(
29-
action_url="",
29+
action_url="TS",
3030
)
3131

3232
def test_action_url(self):

test/models/test_create_web_rtc_token.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ class TestCreateWebRTCToken(unittest.TestCase):
2626

2727
def setUp(self):
2828
self.model = CreateWebRTCToken(
29-
to="",
30-
var_from="",
29+
to="TS",
30+
var_from="TS",
3131
uses=1,
3232
)
3333

test/models/test_enqueue.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ class TestEnqueue(unittest.TestCase):
2626

2727
def setUp(self):
2828
self.model = Enqueue(
29-
action_url="",
30-
queue_id="",
31-
wait_url="",
29+
action_url="TS",
30+
queue_id="TS",
31+
wait_url="TS",
3232
)
3333

3434
def test_action_url(self):

test/models/test_filter_logs_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class TestFilterLogsRequest(unittest.TestCase):
2626

2727
def setUp(self):
2828
self.model = FilterLogsRequest(
29-
pql="",
29+
pql="TS",
3030
)
3131

3232
def test_pql(self):

test/models/test_get_digits.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class TestGetDigits(unittest.TestCase):
2626

2727
def setUp(self):
2828
self.model = GetDigits(
29-
action_url="",
29+
action_url="TS",
3030
)
3131

3232
def test_action_url(self):

test/models/test_get_speech.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ class TestGetSpeech(unittest.TestCase):
2626

2727
def setUp(self):
2828
self.model = GetSpeech(
29-
action_url="",
30-
grammar_file="",
29+
action_url="TS",
30+
grammar_file="TS",
3131
)
3232

3333
def test_action_url(self):

0 commit comments

Comments
 (0)