diff --git a/.travis.yml b/.travis.yml index 86a94cec..e5261777 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: python python: - "2.7" - - "3.3" - "3.4" - "3.5" diff --git a/pywb/webagg/test/test_handlers.py b/pywb/webagg/test/test_handlers.py index 5eed24ac..ced433f1 100644 --- a/pywb/webagg/test/test_handlers.py +++ b/pywb/webagg/test/test_handlers.py @@ -301,13 +301,13 @@ foo=bar&test=abc""" assert 'ResErrors' not in resp.headers def test_agg_seq_fallback_1(self): - resp = self.testapp.get('/fallback/resource?url=http://www.iana.org/') + resp = self.testapp.get('/fallback/resource?url=http://httpbin.org/') assert resp.headers['WebAgg-Source-Coll'] == 'live' - self._check_uri_date(resp, 'http://www.iana.org/', True) + self._check_uri_date(resp, 'http://httpbin.org/', True) - assert resp.headers['Link'] == MementoUtils.make_link('http://www.iana.org/', 'original') + assert resp.headers['Link'] == MementoUtils.make_link('http://httpbin.org/', 'original') assert b'HTTP/1.1 200 OK' in resp.body