Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions automl/cloud-client/batch_predict_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ def test_batch_predict(capsys):
)
out, _ = capsys.readouterr()
assert (
"The model is either not found or not supported for prediction yet"
"does not exist"
in out
)
except Exception as e:
assert (
"The model is either not found or not supported for prediction yet"
"does not exist"
in e.message
)