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

Skip to content

Commit eec0ee6

Browse files
author
matt
committed
Rename read() to list()
1 parent 70114c3 commit eec0ee6

File tree

68 files changed

+68
-68
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+68
-68
lines changed

tests/integration/api/v2010/account/address/test_dependent_phone_number.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
class DependentPhoneNumberTestCase(IntegrationTestCase):
1616

17-
def test_read_request(self):
17+
def test_list_request(self):
1818
self.holodeck.mock(Response(500, ''))
1919

2020
with self.assertRaises(TwilioException):

tests/integration/api/v2010/account/available_phone_number/test_local.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
class LocalTestCase(IntegrationTestCase):
1616

17-
def test_read_request(self):
17+
def test_list_request(self):
1818
self.holodeck.mock(Response(500, ''))
1919

2020
with self.assertRaises(TwilioException):

tests/integration/api/v2010/account/available_phone_number/test_mobile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
class MobileTestCase(IntegrationTestCase):
1616

17-
def test_read_request(self):
17+
def test_list_request(self):
1818
self.holodeck.mock(Response(500, ''))
1919

2020
with self.assertRaises(TwilioException):

tests/integration/api/v2010/account/available_phone_number/test_toll_free.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
class TollFreeTestCase(IntegrationTestCase):
1616

17-
def test_read_request(self):
17+
def test_list_request(self):
1818
self.holodeck.mock(Response(500, ''))
1919

2020
with self.assertRaises(TwilioException):

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def test_delete_response(self):
8484

8585
self.assertTrue(actual)
8686

87-
def test_read_request(self):
87+
def test_list_request(self):
8888
self.holodeck.mock(Response(500, ''))
8989

9090
with self.assertRaises(TwilioException):

tests/integration/api/v2010/account/call/test_recording.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def test_delete_response(self):
7676

7777
self.assertTrue(actual)
7878

79-
def test_read_request(self):
79+
def test_list_request(self):
8080
self.holodeck.mock(Response(500, ''))
8181

8282
with self.assertRaises(TwilioException):

tests/integration/api/v2010/account/conference/test_participant.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def test_delete_response(self):
118118

119119
self.assertTrue(actual)
120120

121-
def test_read_request(self):
121+
def test_list_request(self):
122122
self.holodeck.mock(Response(500, ''))
123123

124124
with self.assertRaises(TwilioException):

tests/integration/api/v2010/account/incoming_phone_number/test_local.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
class LocalTestCase(IntegrationTestCase):
1616

17-
def test_read_request(self):
17+
def test_list_request(self):
1818
self.holodeck.mock(Response(500, ''))
1919

2020
with self.assertRaises(TwilioException):

tests/integration/api/v2010/account/incoming_phone_number/test_mobile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
class MobileTestCase(IntegrationTestCase):
1616

17-
def test_read_request(self):
17+
def test_list_request(self):
1818
self.holodeck.mock(Response(500, ''))
1919

2020
with self.assertRaises(TwilioException):

tests/integration/api/v2010/account/incoming_phone_number/test_toll_free.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
class TollFreeTestCase(IntegrationTestCase):
1616

17-
def test_read_request(self):
17+
def test_list_request(self):
1818
self.holodeck.mock(Response(500, ''))
1919

2020
with self.assertRaises(TwilioException):

0 commit comments

Comments
 (0)