Skip to content

Commit

Permalink
Remove unused member in test project
Browse files Browse the repository at this point in the history
  • Loading branch information
kiritsuku committed Dec 28, 2015
1 parent 376684d commit 5b79b88
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ class NewlineInferencerTest extends FlatSpec with ShouldMatchers {
val actualTokenTypes = actualTokens.map(_.tokenType)
require(actualTokenTypes.last == EOF, "Last token must be EOF, but was " + actualTokens.last.tokenType)
require(actualTokenTypes.count(_ == EOF) == 1, "There must only be one EOF token")
val reconstitutedSource = actualTokens.init.map(_.rawText).mkString
require(actualTokenTypes.init == expectedTokens, "Tokens do not match. Expected " + expectedTokens + ", but was " + actualTokenTypes.init)
}
}
Expand Down

0 comments on commit 5b79b88

Please sign in to comment.