Skip to content

Commit b10a6af

Browse files
committed
Follow spark code format conventions of tab => 2 spaces
1 parent 965256e commit b10a6af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/test/scala/org/apache/spark/rdd/RDDSuite.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,8 +373,8 @@ class RDDSuite extends FunSuite with SharedSparkContext {
373373
val prng42 = new Random(42)
374374
val prng43 = new Random(43)
375375
Array(1, 2, 3, 4, 5, 6).filter{i =>
376-
if (i < 4) 0 == prng42.nextInt(3)
377-
else 0 == prng43.nextInt(3)}
376+
if (i < 4) 0 == prng42.nextInt(3)
377+
else 0 == prng43.nextInt(3)}
378378
}
379379
assert(sample.size === checkSample.size)
380380
for (i <- 0 until sample.size) assert(sample(i) === checkSample(i))

0 commit comments

Comments
 (0)