Skip to content

Commit fb81c4a

Browse files
committed
Fix typo
1 parent a9cd5bb commit fb81c4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

streaming/src/test/scala/org/apache/spark/streaming/TestSuiteBase.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ trait TestSuiteBase extends FunSuite with BeforeAndAfter with Logging {
387387

388388
// Wait until expected number of output items have been generated
389389
val startTime = System.currentTimeMillis()
390-
whileSt (output.size < numExpectedOutput &&
390+
while (output.size < numExpectedOutput &&
391391
System.currentTimeMillis() - startTime < maxWaitTimeMillis) {
392392
logInfo("output.size = " + output.size + ", numExpectedOutput = " + numExpectedOutput)
393393
ssc.awaitTerminationOrTimeout(50)

0 commit comments

Comments
 (0)