Mercurial > p > roundup > code
diff test/test_liveserver.py @ 6651:da6c9050a79e
Fix modification of Cache_Control
The previous code modified the Cache_Control dictionary in the Client
class (in one of the cgi tests) which made a later test in
test_liveserver fail
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Mon, 02 May 2022 14:25:15 +0200 |
| parents | 5be4f9104cf7 |
| children | a193653d6fa4 |
line wrap: on
line diff
--- a/test/test_liveserver.py Mon May 02 13:46:58 2022 +0200 +++ b/test/test_liveserver.py Mon May 02 14:25:15 2022 +0200 @@ -1001,7 +1001,6 @@ f.headers.items() if key in expected }, expected) - @pytest.mark.xfail(reason="Fails with 3600 age on circle ci not sure why") def test_cache_control_css(self): f = requests.get(self.url_base() + '/@@file/style.css', headers = {'content-type': "",
