From 23cc1e7704c6fbb0a32b4aad735f0c6e4876136c Mon Sep 17 00:00:00 2001 From: cherry530 Date: Fri, 25 Nov 2022 15:59:10 +0800 Subject: [PATCH] Fix test failed Signed-off-by: cherry530 --- python-httpretty.spec | 7 ++++++- test_handle_slashes.patch | 9 +++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 test_handle_slashes.patch diff --git a/python-httpretty.spec b/python-httpretty.spec index ffefe45..0db2a9a 100644 --- a/python-httpretty.spec +++ b/python-httpretty.spec @@ -1,6 +1,6 @@ Name: python-httpretty Version: 1.1.4 -Release: 2 +Release: 3 Summary: HTTP Client mocking tool for Python License: MIT URL: https://pypi.org/project/httpretty/ @@ -8,6 +8,8 @@ Source0: https://files.pythonhosted.org/packages/source/h/httpretty/httpr BuildArch: noarch +Patch0000: test_handle_slashes.patch + %description HTTP Client mocking tool for Python.Provides a full fake TCP socket module. @@ -47,6 +49,9 @@ LANG=en_US.UTF-8 %{__python3} -m nose2 -v %{python3_sitelib}/httpretty-%{version}-py%{python3_version}.egg-info %changelog +* Fri Nov 25 2022 xu_ping - 1.1.4-3 +- Fix test_httpretty_should_handle_paths_starting_with_two_slashes fail. + * Wed Aug 3 2022 kkz - 1.1.4-2 - Remove unnecessary buildrequires diff --git a/test_handle_slashes.patch b/test_handle_slashes.patch new file mode 100644 index 0000000..ca90ef3 --- /dev/null +++ b/test_handle_slashes.patch @@ -0,0 +1,9 @@ +diff -Nur a/tests/functional/test_requests.py b/tests/functional/test_requests.py +--- a/tests/functional/test_requests.py 2021-05-14 09:02:06.000000000 +0800 ++++ b/tests/functional/test_requests.py 2022-08-27 15:44:21.935602830 +0800 +@@ -946,4 +946,4 @@ + response = requests.get('http://example.com//foo') + expect(response.text).to.equal('Find the best foo') + expect(HTTPretty.last_request.method).to.equal('GET') +- expect(HTTPretty.last_request.path).to.equal('//foo') ++ expect(HTTPretty.last_request.path).to.equal('/foo') -- Gitee