Skip to content

Commit 98e96e6

Browse files
Removed an unused block
1 parent dc7e95e commit 98e96e6

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

test/integration/test_media_api.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,6 @@
1717
class TestMedia(unittest.TestCase):
1818
"""Media API integration Test
1919
"""
20-
# api_client = None
21-
22-
# @classmethod
23-
# def setUpClass(cls) -> None:
24-
# configuration = bandwidth.Configuration(
25-
# username=os.environ['BW_USERNAME'],
26-
# password=os.environ['BW_PASSWORD']
27-
# )
28-
# cls.api_client = bandwidth.ApiClient(configuration)
2920

3021
def setUp(self) -> None:
3122
configuration = bandwidth.Configuration(

test/integration/test_phone_number_lookup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,15 +145,15 @@ def testSuccessfulPhoneNumberLookup(self) -> None:
145145
bw_lookup_result: LookupResult = get_lookup_status_response.result[0]
146146
self.validateResult(bw_lookup_result, os.environ['BW_NUMBER'], os.environ['BW_NUMBER_PROVIDER'])
147147

148-
# # Check the information for a Verizon TN
148+
# Check the information for a Verizon TN
149149
vzw_lookup_result = get_lookup_status_response.result[1]
150150
self.validateResult(vzw_lookup_result, os.environ['VZW_NUMBER'], "Verizon")
151151

152-
# # Check the information for an AT&T TN
152+
# Check the information for an AT&T TN
153153
att_lookup_result = get_lookup_status_response.result[2]
154154
self.validateResult(att_lookup_result, os.environ['ATT_NUMBER'], "AT&T")
155155

156-
# # Check the information for a T-Mobile TN
156+
# Check the information for a T-Mobile TN
157157
t_mobile_lookup_result = get_lookup_status_response.result[3]
158158
self.validateResult(t_mobile_lookup_result, os.environ['T_MOBILE_NUMBER'], "T-Mobile")
159159

0 commit comments

Comments
 (0)