Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 79b44d7

Browse files
author
matt
committed
Fix the urls for usage, short codes, and notifications
1 parent b6d1f38 commit 79b44d7

22 files changed

+22
-22
lines changed

tests/integration/api/v2010/account/sms/test_short_code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def test_read_request(self):
104104

105105
self.holodeck.assert_has_request(Request(
106106
'get',
107-
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/SMS/ShortCodes',
107+
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/SMS/ShortCodes.json',
108108
))
109109

110110
def test_read_full_response(self):

tests/integration/api/v2010/account/test_notification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def test_read_request(self):
8989

9090
self.holodeck.assert_has_request(Request(
9191
'get',
92-
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Notifications',
92+
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Notifications.json',
9393
))
9494

9595
def test_read_full_response(self):

tests/integration/api/v2010/account/usage/record/test_all_time.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_read_request(self):
2525

2626
self.holodeck.assert_has_request(Request(
2727
'get',
28-
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Usage/Records/AllTime',
28+
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Usage/Records/AllTime.json',
2929
))
3030

3131
def test_read_full_response(self):

tests/integration/api/v2010/account/usage/record/test_daily.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_read_request(self):
2525

2626
self.holodeck.assert_has_request(Request(
2727
'get',
28-
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Usage/Records/Daily',
28+
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Usage/Records/Daily.json',
2929
))
3030

3131
def test_read_full_response(self):

tests/integration/api/v2010/account/usage/record/test_last_month.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_read_request(self):
2525

2626
self.holodeck.assert_has_request(Request(
2727
'get',
28-
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Usage/Records/LastMonth',
28+
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Usage/Records/LastMonth.json',
2929
))
3030

3131
def test_read_full_response(self):

tests/integration/api/v2010/account/usage/record/test_monthly.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_read_request(self):
2525

2626
self.holodeck.assert_has_request(Request(
2727
'get',
28-
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Usage/Records/Monthly',
28+
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Usage/Records/Monthly.json',
2929
))
3030

3131
def test_read_full_response(self):

tests/integration/api/v2010/account/usage/record/test_this_month.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_read_request(self):
2525

2626
self.holodeck.assert_has_request(Request(
2727
'get',
28-
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Usage/Records/ThisMonth',
28+
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Usage/Records/ThisMonth.json',
2929
))
3030

3131
def test_read_full_response(self):

tests/integration/api/v2010/account/usage/record/test_today.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_read_request(self):
2525

2626
self.holodeck.assert_has_request(Request(
2727
'get',
28-
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Usage/Records/Today',
28+
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Usage/Records/Today.json',
2929
))
3030

3131
def test_read_full_response(self):

tests/integration/api/v2010/account/usage/record/test_yearly.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_read_request(self):
2525

2626
self.holodeck.assert_has_request(Request(
2727
'get',
28-
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Usage/Records/Yearly',
28+
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Usage/Records/Yearly.json',
2929
))
3030

3131
def test_read_full_response(self):

tests/integration/api/v2010/account/usage/record/test_yesterday.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_read_request(self):
2525

2626
self.holodeck.assert_has_request(Request(
2727
'get',
28-
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Usage/Records/Yesterday',
28+
'https://api.twilio.com/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Usage/Records/Yesterday.json',
2929
))
3030

3131
def test_read_full_response(self):

0 commit comments

Comments
 (0)