Skip to content

Commit 3a11232

Browse files
committed
Don't treat algo info response as a dict though
1 parent 6b466d8 commit 3a11232

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Test/client_test.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,8 @@ def test_algorithm_programmatic_create_process(self):
222222

223223
# --- testing complete, now publishing new release.
224224

225+
# Just commenting out this part, to temporarily to check the CI
226+
225227
pub_settings = {"algorithm_callability": "private"}
226228
pub_version_info = {
227229
"release_notes": "created programmatically",
@@ -244,9 +246,7 @@ def test_algorithm_programmatic_create_process(self):
244246
response = created_algo.info(git_hash)
245247

246248
self.assertEqual(
247-
response["version_info"]["semantic_version"],
248-
"0.1.0",
249-
"information is incorrect",
249+
response.version_info.semantic_version, "0.1.0", "information is incorrect"
250250
)
251251

252252

0 commit comments

Comments
 (0)