diff --git a/ingestion_server/test/unit_tests/test_cleanup.py b/ingestion_server/test/unit_tests/test_cleanup.py index 696a873c065..02cc6d047e2 100644 --- a/ingestion_server/test/unit_tests/test_cleanup.py +++ b/ingestion_server/test/unit_tests/test_cleanup.py @@ -47,12 +47,12 @@ def test_url_protocol_fix(): tls_support_cache = {} pook.get("https://flickr.com").reply(200) result = CleanupFunctions.cleanup_url(bad_url, tls_support_cache) - expected = "'https://flickr.com'" + expected = "https://flickr.com" bad_http = "neverssl.com" pook.get("https://neverssl.com").reply(500) result_http = CleanupFunctions.cleanup_url(bad_http, tls_support_cache) - expected_http = "'http://neverssl.com'" + expected_http = "http://neverssl.com" assert result == expected assert result_http == expected_http