Skip to content

Commit 429728f

Browse files
committed
Fix a typo
1 parent 193d191 commit 429728f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

streaming/src/test/scala/org/apache/spark/streaming/util/RecurringTimerSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class RecurringTimerSuite extends SparkFunSuite {
7272
}
7373
clock.advance(200)
7474
// When RecurringTimer is awake from clock.waitTillTime, it will call `callback` once.
75-
// Then it will find `stopped` is false and exit the loop, but it should call `callback` again
75+
// Then it will find `stopped` is true and exit the loop, but it should call `callback` again
7676
// before exiting its internal thread.
7777
t.join()
7878
assert(results === Seq(0L, 100L, 200L))

0 commit comments

Comments
 (0)