File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -189,13 +189,13 @@ def test_cp_R2L(self):
189189 def test_auth (self ):
190190 # key for test account
191191 key = os .getenv ('ALGORITHMIA_API_KEY' )
192- address = ' https://api.algorithmia.com'
192+ api_address = " https://api.algorithmia.com"
193193 profile = 'default'
194- CLI ().auth (address , key , profile = profile )
194+ CLI ().auth (api_address , key , profile = profile )
195195 resultK = CLI ().getAPIkey (profile )
196196 resultA = CLI ().getAPIaddress (profile )
197197 self .assertEqual (resultK , key )
198- self .assertEqual (resultA , address )
198+ self .assertEqual (resultA , api_address )
199199
200200 def test_auth_cert (self ):
201201
@@ -274,8 +274,8 @@ def test_get_template(self):
274274 print (e )
275275
276276 def test_api_address_auth (self ):
277- api_key = os .getenv ('ALGORITHMIA_TEST_API_KEY ' )
278- api_address = "https://api.test. algorithmia.com"
277+ api_key = os .getenv ('ALGORITHMIA_API_KEY ' )
278+ api_address = "https://api.algorithmia.com"
279279 CLI ().auth (api_address , api_key )
280280 profile = "default"
281281
You can’t perform that action at this time.
0 commit comments