Skip to content

Commit

Permalink
fix test calls to .replay()
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-williams committed Feb 12, 2015
1 parent 98aa3fe commit a8647ec
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class ReplayListenerSuite extends FunSuite with BeforeAndAfter {
try {
val replayer = new ReplayListenerBus()
replayer.addListener(eventMonster)
replayer.replay(logData, SPARK_VERSION)
replayer.replay(logData, SPARK_VERSION, logFilePath.toString)
} finally {
logData.close()
}
Expand Down Expand Up @@ -120,7 +120,7 @@ class ReplayListenerSuite extends FunSuite with BeforeAndAfter {
try {
val replayer = new ReplayListenerBus()
replayer.addListener(eventMonster)
replayer.replay(logData, version)
replayer.replay(logData, version, eventLog.getPath().toString)
} finally {
logData.close()
}
Expand Down

0 comments on commit a8647ec

Please sign in to comment.