From 42db3a1c2fb6db61e01756be7fe88c4110ae638e Mon Sep 17 00:00:00 2001
From: Josh Rosen <joshrosen@databricks.com>
Date: Sat, 27 Jun 2015 23:07:20 -0700
Subject: [PATCH] [HOTFIX] Fix pull request builder bug in #6967

---
 dev/run-tests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/run-tests.py b/dev/run-tests.py
index c51b0d3010..3533e0c857 100755
--- a/dev/run-tests.py
+++ b/dev/run-tests.py
@@ -365,7 +365,7 @@ def run_python_tests(test_modules):
 
     command = [os.path.join(SPARK_HOME, "python", "run-tests")]
     if test_modules != [modules.root]:
-        command.append("--modules=%s" % ','.join(m.name for m in modules))
+        command.append("--modules=%s" % ','.join(m.name for m in test_modules))
     run_cmd(command)
 
 
-- 
GitLab