Skip to content
Snippets Groups Projects
Commit a2f2ce52 authored by Thomas Goirand's avatar Thomas Goirand
Browse files

Restore package history, as some stuff were never commited to Git.

parent 8dd2fc6f
No related branches found
No related tags found
No related merge requests found
python-requests-unixsocket (0.1.5-2) unstable; urgency=medium
python-requests-unixsocket (0.1.5-4) unstable; urgency=medium
[ Ondřej Nový ]
* Standards-Version is 3.9.8 now (no change)
* d/rules: Changed UPSTREAM_GIT protocol to https
* d/copyright: Changed source URL to https protocol
* d/control: Use team+openstack@tracker.debian.org as maintainer
* Use debhelper-compat instead of debian/compat.
* d/control: Set Vcs-* to salsa.debian.org
......@@ -21,6 +18,28 @@ python-requests-unixsocket (0.1.5-2) unstable; urgency=medium
-- Thomas Goirand <zigo@debian.org> Sat, 14 Sep 2019 17:50:31 +0200
python-requests-unixsocket (0.1.5-3) unstable; urgency=medium
* Team upload.
[ Ondřej Nový ]
* Bumped debhelper compat version to 10
[ Ondřej Kobližek ]
* Non case sensitive url comparison in tests (Closes: #848654)
-- Ondřej Kobližek <koblizeko@gmail.com> Mon, 19 Dec 2016 15:00:29 +0100
python-requests-unixsocket (0.1.5-2) unstable; urgency=medium
* Standards-Version is 3.9.8 now (no change)
* d/rules: Changed UPSTREAM_GIT protocol to https
* d/copyright: Changed source URL to https protocol
* d/s/options: extend-diff-ignore of .gitreview
* d/control: Using OpenStack's Gerrit as VCS URLs.
-- Ondřej Nový <novy@ondrej.org> Sat, 09 Apr 2016 19:31:04 +0200
python-requests-unixsocket (0.1.5-1) unstable; urgency=medium
* Initial release. (Closes: #817052)
......
......@@ -5,7 +5,7 @@ Maintainer: Debian OpenStack <team+openstack@tracker.debian.org>
Uploaders:
Thomas Goirand <zigo@debian.org>,
Build-Depends:
debhelper-compat (= 9),
debhelper-compat (= 10),
dh-python,
openstack-pkg-tools (>= 99~),
python3-all,
......
Description: non case sensitive url comparison in tests
Forwarded: not-needed
Author: Ondřej Kobližek <koblizeko@gmail.com>
--- a/requests_unixsocket/tests/test_requests_unixsocket.py
+++ b/requests_unixsocket/tests/test_requests_unixsocket.py
@@ -34,7 +34,7 @@
assert r.headers['X-Requested-Path'] == '/path/to/page'
assert r.headers['X-Socket-Path'] == usock_thread.usock
assert isinstance(r.connection, requests_unixsocket.UnixAdapter)
- assert r.url == url
+ assert r.url.lower() == url.lower()
if method == 'head':
assert r.text == ''
else:
@@ -62,7 +62,7 @@
assert r.headers['X-Requested-Query-String'] == 'timestamp=true'
assert r.headers['X-Socket-Path'] == usock_thread.usock
assert isinstance(r.connection, requests_unixsocket.UnixAdapter)
- assert r.url == url
+ assert r.url.lower() == url.lower()
if method == 'head':
assert r.text == ''
else:
@@ -110,7 +110,7 @@
assert r.headers['X-Socket-Path'] == usock_thread.usock
assert isinstance(r.connection,
requests_unixsocket.UnixAdapter)
- assert r.url == url
+ assert r.url.lower() == url.lower()
if method == 'head':
assert r.text == ''
else:
do-not-run-tests-with--pep8.patch
non-case-sensitive-url-cmp.patch
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment