Skip to content

Commit

Permalink
Fix test in EventLoggingListenerSuite
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewor14 committed Jul 3, 2014
1 parent 0e20f71 commit 622a471
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ class EventLoggingListenerSuite extends FunSuite with BeforeAndAfter {
assert(sc.eventLogger.isDefined)
val eventLogger = sc.eventLogger.get
val expectedLogDir = logDirPath.toString
assert(eventLogger.logDir.startsWith(expectedLogDir))
assert(eventLogger.logDir.contains(expectedLogDir))

// Begin listening for events that trigger asserts
val eventExistenceListener = new EventExistenceListener(eventLogger)
Expand Down

0 comments on commit 622a471

Please sign in to comment.