File tree Expand file tree Collapse file tree 2 files changed +3
-12
lines changed
Expand file tree Collapse file tree 2 files changed +3
-12
lines changed Original file line number Diff line number Diff line change 1717class 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 (
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments