summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/tests/webdriver/classic/new_session/profile_root.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/mozilla/tests/webdriver/classic/new_session/profile_root.py')
-rw-r--r--testing/web-platform/mozilla/tests/webdriver/classic/new_session/profile_root.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/web-platform/mozilla/tests/webdriver/classic/new_session/profile_root.py b/testing/web-platform/mozilla/tests/webdriver/classic/new_session/profile_root.py
index fc3607bed9..97cb835e2c 100644
--- a/testing/web-platform/mozilla/tests/webdriver/classic/new_session/profile_root.py
+++ b/testing/web-platform/mozilla/tests/webdriver/classic/new_session/profile_root.py
@@ -4,7 +4,7 @@ import os
import pytest
-def test_profile_root(tmp_path, configuration, geckodriver, user_prefs):
+def test_profile_root(tmp_path, configuration, geckodriver, default_preferences):
profile_path = os.path.join(tmp_path, "geckodriver-test")
os.makedirs(profile_path)
@@ -12,7 +12,7 @@ def test_profile_root(tmp_path, configuration, geckodriver, user_prefs):
# Pass all the wpt preferences from the default profile's user.js via
# capabilities to allow geckodriver to create a new valid profile itself.
- config["capabilities"]["moz:firefoxOptions"]["prefs"] = user_prefs
+ config["capabilities"]["moz:firefoxOptions"]["prefs"] = default_preferences
# Ensure we don't set a profile in command line arguments
del config["capabilities"]["moz:firefoxOptions"]["args"]