Skip to content

Commit

Permalink
fix: fix predict sample tests for proto-plus==1.14.2 (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
dizcology committed Mar 1, 2021
1 parent 82193ef commit b1c9d88
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -37,4 +37,4 @@ def test_ucaip_generated_predict_custom_trained_model_sample(capsys):
)

out, _ = capsys.readouterr()
assert "number_value: 1.0" in out
assert "1.0" in out
Expand Up @@ -31,4 +31,4 @@ def test_ucaip_generated_predict_image_object_detection_sample(capsys):
)

out, _ = capsys.readouterr()
assert 'string_value: "Salad"' in out
assert 'Salad' in out
Expand Up @@ -35,4 +35,4 @@ def test_ucaip_generated_predict_tabular_classification_sample(capsys):
)

out, _ = capsys.readouterr()
assert 'string_value: "setosa"' in out
assert 'setosa' in out

0 comments on commit b1c9d88

Please sign in to comment.