Skip to content

Commit 4ef4046

Browse files
committed
ready for PR
1 parent 8fb02e5 commit 4ef4046

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

python/pyspark/tests.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1451,7 +1451,7 @@ def create_spark_package(self, artifact_name):
14511451
|</project>
14521452
""" % (group_id, artifact_id, version)).lstrip(),
14531453
os.path.join(group_id, artifact_id, version))
1454-
self.createFileInZip("%s/%s.py" % (artifact_id, artifact_id), """
1454+
self.createFileInZip("%s.py" % artifact_id, """
14551455
|def myfunc(x):
14561456
| return x + 1
14571457
""", ".jar", os.path.join(group_id, artifact_id, version),
@@ -1539,8 +1539,6 @@ def test_package_dependency(self):
15391539
"file:" + self.programDir, script], stdout=subprocess.PIPE)
15401540

15411541
out, err = proc.communicate()
1542-
print "\n\nout: %s\n\n" % out
1543-
print "\n\nerr: %s\n\n" % err
15441542
self.assertEqual(0, proc.returncode)
15451543
self.assertIn("[2, 3, 4]", out)
15461544

0 commit comments

Comments
 (0)