Skip to content

Commit

Permalink
Fix linting failures
Browse files Browse the repository at this point in the history
One of these was introduced in #3672, but not discovered due to
other CI failures (e.g. python not found when running the lint job)
  • Loading branch information
redshiftzero committed Dec 21, 2018
1 parent 3fc86d4 commit c989da4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion securedrop/tests/pageslayout/functional_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ def webdriver_fixture(self, request):
if not os.path.exists(self.log_dir):
os.makedirs(self.log_dir)
self.new_profile = webdriver.FirefoxProfile()
self.new_profile.set_preference("intl.accept_languages", self.accept_languages)
self.new_profile.set_preference("intl.accept_languages",
self.accept_languages)
self.override_driver = True
yield None

Expand Down

0 comments on commit c989da4

Please sign in to comment.