Skip to content

Commit 0ca3747

Browse files
authored
fix: Fixed integration test for model.upload (#975)
Fixed bug in integration test introduced by #952
1 parent 9289f2d commit 0ca3747

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/system/aiplatform/test_model_upload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@ def test_upload_and_deploy_xgboost_model(self, shared_state):
7272
labels={"my_label": "updated"},
7373
)
7474
assert model.display_name == "new_name"
75-
assert model.display_name == "new_description"
75+
assert model.description == "new_description"
7676
assert model.labels == {"my_label": "updated"}

0 commit comments

Comments
 (0)