Github user davies commented on a diff in the pull request:

    https://github.com/apache/spark/pull/1744#discussion_r15893054
  
    --- Diff: python/pyspark/tests.py ---
    @@ -685,30 +688,32 @@ def test_reserialization(self):
             result1 = sorted(self.sc.sequenceFile(basepath + 
"/reserialize/sequence").collect())
             self.assertEqual(result1, data)
     
    -        rdd.saveAsHadoopFile(basepath + "/reserialize/hadoop",
    -                             
"org.apache.hadoop.mapred.SequenceFileOutputFormat")
    +        rdd.saveAsHadoopFile(
    +            basepath + "/reserialize/hadoop",
    +            "org.apache.hadoop.mapred.SequenceFileOutputFormat")
             result2 = sorted(self.sc.sequenceFile(basepath + 
"/reserialize/hadoop").collect())
             self.assertEqual(result2, data)
     
    -        rdd.saveAsNewAPIHadoopFile(basepath + "/reserialize/newhadoop",
    -                             
"org.apache.hadoop.mapreduce.lib.output.SequenceFileOutputFormat")
    +        rdd.saveAsNewAPIHadoopFile(
    +            basepath + "/reserialize/newhadoop",
    +            
"org.apache.hadoop.mapreduce.lib.output.SequenceFileOutputFormat")
    --- End diff --
    
    Sorry for the comment, this is really part of pep8. Your changes are 
correct.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to