From 1227c35cedf91c5ce17515111918dd5a6e8931aa Mon Sep 17 00:00:00 2001 From: Jay McCure Date: Tue, 17 Mar 2015 20:20:21 +0000 Subject: [PATCH] Amend duplicated whitespace comment test --- .../scala/com/typesafe/config/impl/TokenizerTest.scala | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/src/test/scala/com/typesafe/config/impl/TokenizerTest.scala b/config/src/test/scala/com/typesafe/config/impl/TokenizerTest.scala index 931deb15..7ce2b3b5 100644 --- a/config/src/test/scala/com/typesafe/config/impl/TokenizerTest.scala +++ b/config/src/test/scala/com/typesafe/config/impl/TokenizerTest.scala @@ -283,11 +283,11 @@ class TokenizerTest extends TestUtils { tokenLine(2), tokenCommentDoubleSlash("comment3 "), tokenLine(3), tokenLine(4), tokenCommentDoubleSlash("comment4")), " //comment\r\n //comment2 \n//comment3 \n\n//comment4") - tokenizerTest(List(tokenWhitespace(" "), tokenCommentDoubleSlash("comment\r"), - tokenLine(1), tokenWhitespace(" "), tokenCommentDoubleSlash("comment2 "), - tokenLine(2), tokenCommentDoubleSlash("comment3 "), - tokenLine(3), tokenLine(4), tokenCommentDoubleSlash("comment4")), - " //comment\r\n //comment2 \n//comment3 \n\n//comment4") + tokenizerTest(List(tokenWhitespace(" "), tokenCommentHash("comment\r"), + tokenLine(1), tokenWhitespace(" "), tokenCommentHash("comment2 "), + tokenLine(2), tokenCommentHash("comment3 "), + tokenLine(3), tokenLine(4), tokenCommentHash("comment4")), + " #comment\r\n #comment2 \n#comment3 \n\n#comment4") } @Test