summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/testpy/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/testpy/__init__.py b/test/testpy/__init__.py
index a46e964a47..a1b89898fe 100644
--- a/test/testpy/__init__.py
+++ b/test/testpy/__init__.py
@@ -173,5 +173,6 @@ class AddonTestConfiguration(SimpleTestConfiguration):
for test in all_tests:
if self.Contains(path, test):
file_path = join(self.root, reduce(join, test[1:], "") + ".js")
- result.append(SimpleTestCase(test, file_path, mode, self.context, self))
+ result.append(
+ SimpleTestCase(test, file_path, arch, mode, self.context, self))
return result