Skip to content

Commit 3d03d9b

Browse files
Update test_phone_number_lookup.py
1 parent 4258ea1 commit 3d03d9b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/integration/test_phone_number_lookup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -157,16 +157,16 @@ def testSuccessfulPhoneNumberLookup(self) -> None:
157157
self.validateResult(bw_lookup_result, os.environ['BW_NUMBER'], os.environ['BW_NUMBER_PROVIDER'])
158158

159159
# # Check the information for a Verizon TN
160-
# vzw_lookup_result = get_lookup_status_response.result[1]
161-
# self.validateResult(vzw_lookup_result, os.environ['VZW_NUMBER'], "Verizon")
160+
vzw_lookup_result = get_lookup_status_response.result[1]
161+
self.validateResult(vzw_lookup_result, os.environ['VZW_NUMBER'], "Verizon")
162162

163163
# # Check the information for an AT&T TN
164-
# att_lookup_result = get_lookup_status_response.result[2]
165-
# self.validateResult(att_lookup_result, os.environ['ATT_NUMBER'], "AT&T")
164+
att_lookup_result = get_lookup_status_response.result[2]
165+
self.validateResult(att_lookup_result, os.environ['ATT_NUMBER'], "AT&T")
166166

167167
# # Check the information for a T-Mobile TN
168-
# t_mobile_lookup_result = get_lookup_status_response.result[3]
169-
# self.validateResult(t_mobile_lookup_result, os.environ['T_MOBILE_NUMBER'], "T-Mobile")
168+
t_mobile_lookup_result = get_lookup_status_response.result[3]
169+
self.validateResult(t_mobile_lookup_result, os.environ['T_MOBILE_NUMBER'], "T-Mobile")
170170

171171
# The only way to get a failed number is if the api call to the downstream service fails - so there is no way to force this in our testing currently
172172
# check the failed_telephone_number list

0 commit comments

Comments
 (0)