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):
189
189
def test_auth (self ):
190
190
# key for test account
191
191
key = os .getenv ('ALGORITHMIA_API_KEY' )
192
- address = ' https://api.algorithmia.com'
192
+ api_address = " https://api.algorithmia.com"
193
193
profile = 'default'
194
- CLI ().auth (address , key , profile = profile )
194
+ CLI ().auth (api_address , key , profile = profile )
195
195
resultK = CLI ().getAPIkey (profile )
196
196
resultA = CLI ().getAPIaddress (profile )
197
197
self .assertEqual (resultK , key )
198
- self .assertEqual (resultA , address )
198
+ self .assertEqual (resultA , api_address )
199
199
200
200
def test_auth_cert (self ):
201
201
@@ -274,8 +274,8 @@ def test_get_template(self):
274
274
print (e )
275
275
276
276
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"
279
279
CLI ().auth (api_address , api_key )
280
280
profile = "default"
281
281
You can’t perform that action at this time.
0 commit comments