From 18da90f602ffd65ad6f3a1c50606141a1f246e03 Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Tue, 15 Apr 2025 07:50:41 -0400 Subject: [PATCH] =?UTF-8?q?In=20the=20CI=20smoke=20test,=20do=20not=20chec?= =?UTF-8?q?k=20for=20a=20=E2=80=98server=E2=80=99=20header?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It no longer seems to be present, and this particular header was not the point of the test. (cherry picked from Fedora commit b8b7567aeecca104ae526e92800fa1de0fee1758) --- tests/smoke/test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/smoke/test.py b/tests/smoke/test.py index d622ddd..9ac5805 100644 --- a/tests/smoke/test.py +++ b/tests/smoke/test.py @@ -3,7 +3,6 @@ import urllib3 http = urllib3.PoolManager() r = http.request('GET', 'http://example.com/') print('status = {0}'.format(r.status)) -print("headers['server'] = {0}".format(r.headers['server'])) print(r.data) if r.status != 200 or not r.data: raise SystemExit(1)