Commit 24a0eb8b authored by Jonathan Griffin's avatar Jonathan Griffin
Browse files

Bug 753181 - Interpret paths relative to cwd instead of Marionette, r=mdas,...

Bug 753181 - Interpret paths relative to cwd instead of Marionette, r=mdas, a=test-only, DONTBUILD because NPOTB

--HG--
extra : rebase_source : 5b94c5fc397c8190a76bb05f247c655e5b72eac9
parent 67397318
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -265,10 +265,7 @@ class MarionetteTestRunner(object):
        if not self.marionette:
            self.start_marionette()

        if not os.path.isabs(test):
            filepath = os.path.join(os.path.dirname(__file__), test)
        else:
            filepath = test
        filepath = os.path.abspath(test)

        if os.path.isdir(filepath):
            for root, dirs, files in os.walk(filepath):