Skip to content

Commit 1718111

Browse files
authored
automl: fix batch test due to error message change (#3057)
fix: #3052
1 parent 3bfad2c commit 1718111

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

automl/cloud-client/batch_predict_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ def test_batch_predict(capsys):
3737
)
3838
out, _ = capsys.readouterr()
3939
assert (
40-
"The model is either not found or not supported for prediction yet"
40+
"does not exist"
4141
in out
4242
)
4343
except Exception as e:
4444
assert (
45-
"The model is either not found or not supported for prediction yet"
45+
"does not exist"
4646
in e.message
4747
)

0 commit comments

Comments
 (0)