Commit f6de2de4 authored by Henrik Skupin's avatar Henrik Skupin
Browse files

Bug 1527674 - [marionette] Always quit the browser for tests in...

Bug 1527674 - [marionette] Always quit the browser for tests in test_profile_management.py. r=webdriver-reviewers,jdescottes

Differential Revision: https://phabricator.services.mozilla.com/D118322
parent 74315d23
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -24,9 +24,10 @@ class BaseProfileManagement(MarionetteTestCase):

    def tearDown(self):
        shutil.rmtree(self.orig_profile_path, ignore_errors=True)

        self.marionette.profile = None

        self.marionette.quit(clean=True)

        super(BaseProfileManagement, self).tearDown()

    @property