1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-24 06:59:52 +01:00

Remove asserts

This commit is contained in:
Tessa Walsh 2024-03-28 15:26:00 -04:00
parent 0c6b21eb4e
commit 9a5da9b46f

View File

@ -44,7 +44,6 @@ class TestInputReq(object):
self.testapp = webtest.TestApp(self.app) self.testapp = webtest.TestApp(self.app)
def test_get_direct(self): def test_get_direct(self):
assert self.testapp
res = self.testapp.get('/test/http://example.com/', headers={'Foo': 'Bar'}) res = self.testapp.get('/test/http://example.com/', headers={'Foo': 'Bar'})
assert res.text == '\ assert res.text == '\
GET /test/http://example.com/ HTTP/1.0\r\n\ GET /test/http://example.com/ HTTP/1.0\r\n\
@ -54,7 +53,6 @@ Foo: Bar\r\n\
' '
def test_post_direct(self): def test_post_direct(self):
assert self.testapp
res = self.testapp.post('/test/http://example.com/', headers={'Foo': 'Bar'}, params='ABC') res = self.testapp.post('/test/http://example.com/', headers={'Foo': 'Bar'}, params='ABC')
lines = res.text.split('\r\n') lines = res.text.split('\r\n')
assert lines[0] == 'POST /test/http://example.com/ HTTP/1.0' assert lines[0] == 'POST /test/http://example.com/ HTTP/1.0'
@ -71,7 +69,6 @@ GET /example.html HTTP/1.0\r\n\
Foo: Bar\r\n\ Foo: Bar\r\n\
\r\n\ \r\n\
' '
assert self.testapp
res = self.testapp.post('/test-postreq?url=http://example.com/', params=postdata) res = self.testapp.post('/test-postreq?url=http://example.com/', params=postdata)
assert res.text == '\ assert res.text == '\