Skip to content

Commit

Permalink
Fix string style
Browse files Browse the repository at this point in the history
  • Loading branch information
rnowling committed Nov 20, 2014
1 parent f74c160 commit 7d9a8df
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,9 @@ object DFSReadWriteTest {
sc.stop()

if(localWordCount == dfsWordCount) {
println("Success! Local Word Count (" + localWordCount +
") and DFS Word Count (" + dfsWordCount + ") agree.")
println(s"Success! Local Word Count ($localWordCount) and DFS Word Count ($dfsWordCount) agree.")
} else {
println("Failure! Local Word Count (" + localWordCount +
") and DFS Word Count (" + dfsWordCount + ") disagree.")
println(s"Failure! Local Word Count ($localWordCount) and DFS Word Count ($dfsWordCount) disagree.")
}

}
Expand Down

0 comments on commit 7d9a8df

Please sign in to comment.