Skip to content

Commit 02898a1

Browse files
committed
removed all traces of test.algorithmia.com from test cases
1 parent 12b2b3d commit 02898a1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Test/regular/CLI_test.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)