summaryrefslogtreecommitdiff
path: root/buildscripts/resmoke.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts/resmoke.py')
-rwxr-xr-xbuildscripts/resmoke.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildscripts/resmoke.py b/buildscripts/resmoke.py
index 79f3834f0bd..29591ef57a3 100755
--- a/buildscripts/resmoke.py
+++ b/buildscripts/resmoke.py
@@ -53,8 +53,8 @@ def _execute_suite(suite):
logger.info("Skipping %ss, no tests to run", suite.test_kind)
return True
- suite_config = suite.get_executor_config()
- executor = resmokelib.testing.executor.TestSuiteExecutor(logger, suite, **suite_config)
+ executor_config = suite.get_executor_config()
+ executor = resmokelib.testing.executor.TestSuiteExecutor(logger, suite, **executor_config)
try:
executor.run()