summaryrefslogtreecommitdiff
path: root/ick2/versionapi_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'ick2/versionapi_tests.py')
-rw-r--r--ick2/versionapi_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ick2/versionapi_tests.py b/ick2/versionapi_tests.py
index 143e1cc..b8d59d5 100644
--- a/ick2/versionapi_tests.py
+++ b/ick2/versionapi_tests.py
@@ -24,12 +24,12 @@ class VersionAPITests(unittest.TestCase):
def test_returns_version_correcly(self):
bloburl = 'https://blobs.example.com'
api = ick2.VersionAPI(None)
- api.set_blob_service_url(bloburl)
+ api.set_artifact_store_url(bloburl)
response = api.get_version()
self.assertEqual(
response,
{
'version': ick2.__version__,
- 'blob_service': bloburl,
+ 'artifact_store': bloburl,
}
)