oops remove pdb call

This commit is contained in:
Noah Levitt 2017-03-20 12:14:11 -07:00
parent 13130bd9d9
commit e9c7606318
2 changed files with 3 additions and 4 deletions

View File

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

View File

@ -143,8 +143,8 @@ def test_js_dialogs(httpd):
# 'http://localhost:%s/site4/print.html' % httpd.server_port)
def test_page_videos(httpd):
# test depends on behavior of youtube-dl, could fail and need to be
# adjusted on youtube-dl updates
# test depends on behavior of youtube-dl and chromium, could fail and need
# to be adjusted on youtube-dl or chromium updates
chrome_exe = brozzler.suggest_default_chrome_exe()
worker = brozzler.BrozzlerWorker(None)
chrome_exe = brozzler.suggest_default_chrome_exe()
@ -152,7 +152,6 @@ def test_page_videos(httpd):
page = brozzler.Page(None, {
'url':'http://localhost:%s/site6/' % httpd.server_port})
with brozzler.Browser(chrome_exe=chrome_exe) as browser:
import pdb; pdb.set_trace()
worker.brozzle_page(browser, site, page)
assert page.videos
assert len(page.videos) == 2