Index: test/inspector/testcfg.py |
diff --git a/test/inspector/testcfg.py b/test/inspector/testcfg.py |
index 6995669a1592ee824cf447cadab2957ceab6665b..9f4e98c74179626139e253f04529c5e2777f39fb 100644 |
--- a/test/inspector/testcfg.py |
+++ b/test/inspector/testcfg.py |
@@ -44,7 +44,7 @@ class InspectorProtocolTestSuite(testsuite.TestSuite): |
testname = testcase.path.split(os.path.sep)[-1] |
testfilename = os.path.join(self.root, testcase.path + self.suffix()) |
protocoltestfilename = os.path.join(self.root, PROTOCOL_TEST_JS) |
- return [ protocoltestfilename, testfilename ] + flags |
+ return flags + [ protocoltestfilename, testfilename ] |
Yang
2016/10/17 09:08:13
Can we have a separate way of adding additional te
Clemens Hammacher
2016/10/17 09:41:04
Yeah, probably a good idea. This way we can also f
|
def GetSourceForTest(self, testcase): |
filename = os.path.join(self.root, testcase.path + self.suffix()) |