diff --git a/setup.py b/setup.py index b511cf6..14f9bd9 100644 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/tests/test_cluster.py b/tests/test_cluster.py index 5c88bfd..29bb3d9 100644 --- a/tests/test_cluster.py +++ b/tests/test_cluster.py @@ -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