From 4600af0d7f6056bebb7c814416ebec4eb3e49bf5 Mon Sep 17 00:00:00 2001 From: Mattia Verga Date: Wed, 11 Jan 2023 18:51:03 +0100 Subject: [PATCH] Fix expected URLs in integration tests Signed-off-by: Mattia Verga (cherry picked from commit f8283cffbe81bc496c76390251f768ba6675a7e8) --- devel/ci/integration/tests/test_bodhi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devel/ci/integration/tests/test_bodhi.py b/devel/ci/integration/tests/test_bodhi.py index 6f36d1ec22..2f63f1b460 100644 --- a/devel/ci/integration/tests/test_bodhi.py +++ b/devel/ci/integration/tests/test_bodhi.py @@ -886,7 +886,7 @@ def test_get_overrides_rss(bodhi_container, db_container): { "tag": "link", "attrib": {}, - "text": f"http://{bodhi_ip}:8080/overrides/{override['nvr']}" + "text": f"http://{bodhi_ip}:8080/overrides/{quote(override['nvr'])}" }, {"tag": "description", "attrib": {}, "text": override["notes"]}, {"tag": "pubDate", "attrib": {}, "text": override["submission_date"]},