Skip to content

Commit fa184df

Browse files
committed
Added an explicit PhantomJS(port=0) as a workaround for old phantomjs instances staying around and blocking the port needed to run tests.
- Legacy-Id: 11546
1 parent 2bebde1 commit fa184df

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/meeting/tests_js.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class ScheduleEditTests(StaticLiveServerTestCase):
4646
def setUp(self):
4747
set_coverage_checking(False)
4848
condition_data()
49-
self.driver = webdriver.PhantomJS(service_log_path=settings.TEST_GHOSTDRIVER_LOG_PATH)
49+
self.driver = webdriver.PhantomJS(port=0, service_log_path=settings.TEST_GHOSTDRIVER_LOG_PATH)
5050
self.driver.set_window_size(1024,768)
5151

5252
def tearDown(self):

0 commit comments

Comments
 (0)