diff --git a/tests/test_lab_upload.py b/tests/test_lab_upload.py index 7cee48b024..09314ad517 100644 --- a/tests/test_lab_upload.py +++ b/tests/test_lab_upload.py @@ -189,7 +189,7 @@ def test_upload_bad_dest_hf(self, tmp_path: pathlib.Path, cli_runner: CliRunner) result.exit_code == 1 ), f"command finished with an unexpected exit code. {result.stdout}" assert ( - f"Uploading GGUF model at {tmp_gguf} failed with the following Hugging Face Hub error:\n401 Client Error." + f"Uploading GGUF model at {tmp_gguf} failed with the following Hugging Face Hub error:\n401 Client Error" ) in result.output @patch("instructlab.utils.check_skopeo_version")