Skip to content

Commit

Permalink
fixed order in check (prefix only appears on jenkins not when I run u…
Browse files Browse the repository at this point in the history
…nit tests locally)
  • Loading branch information
kmader committed Oct 1, 2014
1 parent 0588737 commit b348ce1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/test/scala/org/apache/spark/FileSuite.scala
Expand Up @@ -245,7 +245,7 @@ class FileSuite extends FunSuite with LocalSparkContext {
val (infile: String, indata: PortableDataStream) = inRdd.first

// Try reading the output back as an object file
assert(outFileName.contains(infile)) // a prefix may get added
assert(infile.contains(outFileName)) // a prefix may get added
assert(indata.toArray === testOutput)
}

Expand Down

0 comments on commit b348ce1

Please sign in to comment.