Skip to content

Commit

Permalink
Fix style issues and small type in StreamingListenerSuite
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffrharr committed May 24, 2015
1 parent e8506d4 commit 6453c90
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,10 @@ class StreamingListenerSuite extends TestSuiteBase with Matchers {
classOf[ReceiverInfoCollector].getName)
val scc = new StreamingContext(conf, Seconds(1))

scc.scheduler.listenerBus.listeners.collect { case x: BatchInfoCollector => x}.size should be (1)
scc.scheduler.listenerBus.listeners.collect {
case x: ReceiverInfoCollector =>
}.size should be (1)
case x: BatchInfoCollector => x }.size should be (1)
scc.scheduler.listenerBus.listeners.collect {
case x: ReceiverInfoCollector => x }.size should be (1)
}
}

Expand Down

0 comments on commit 6453c90

Please sign in to comment.