tiny fix, and now the test passes for me

This commit is contained in:
Noah Levitt 2016-10-14 19:21:26 -07:00
parent 4044fcb647
commit a370e7b987
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ def find_package_data(package):
setuptools.setup(
name='brozzler',
version='1.1b7.dev100',
version='1.1b7.dev101',
description='Distributed web crawling with browsers',
url='https://github.com/internetarchive/brozzler',
author='Noah Levitt',

View File

@ -138,4 +138,4 @@ def test_brozzle_site(httpd):
wb_url = 'http://localhost:8880/brozzler/%s/%s' % (t14, page2)
expected_payload = open(os.path.join(
os.path.dirname(__file__), 'htdocs', 'file1.txt'), 'rb').read()
assert requests.get().content == expected_payload
assert requests.get(wb_url).content == expected_payload