Commit 4bd723b0 authored by Alexandra Borovova's avatar Alexandra Borovova Committed by aborovova@mozilla.com
Browse files

Bug 1968311 - [wptrunner] Add missing default for "profile_creator_cls" for wdspec tests. r=jgraham

parent 9cdd865c
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -381,6 +381,9 @@ class FirefoxAndroidBrowser(Browser):
class FirefoxAndroidWdSpecBrowser(FirefoxWdSpecBrowser):
class FirefoxAndroidWdSpecBrowser(FirefoxWdSpecBrowser):
    def __init__(self, logger, config=None, device_serial=None, adb_binary=None, **kwargs):
    def __init__(self, logger, config=None, device_serial=None, adb_binary=None, **kwargs):


        if "profile_creator_cls" not in kwargs:
            kwargs["profile_creator_cls"] = ProfileCreator

        super().__init__(logger, config=config, **kwargs)
        super().__init__(logger, config=config, **kwargs)


        self.config = config
        self.config = config