Skip to content

Commit cd3acaa

Browse files
authored
Remove lower() calls since the response was fixed to be "OK" (#475)
* on rebase clean commented-by- labels * Update status message, since response message was fixed recently
1 parent baa3472 commit cd3acaa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/model_registry/python_client/test_model_registry_creation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,4 +145,4 @@ def test_model_registry_endpoint_response(
145145
output = execute_model_registry_get_command(
146146
url=f"{model_registry_rest_url}/{endpoint}", headers=model_registry_rest_headers, json_output=False
147147
)
148-
assert output["raw_output"].lower() == "OK".lower()
148+
assert output["raw_output"] == "OK"

0 commit comments

Comments
 (0)