Fixed another bug with line comments

--HG--
branch : trunk
diff --git a/tests/test_parser.py b/tests/test_parser.py
index 9ee6003..8d39ab0 100644
--- a/tests/test_parser.py
+++ b/tests/test_parser.py
@@ -107,7 +107,7 @@
     # XXX: why is the whitespace there in front of the newline?
     env = Environment('{%', '%}', '${', '}', '/*', '*/', '##', '#')
     tmpl = env.from_string(LINE_SYNTAX_PRIORITY1)
-    assert tmpl.render(seq=[1, 2]).strip() == '* 1 \n* 2'
+    assert tmpl.render(seq=[1, 2]).strip() == '* 1\n* 2'
     env = Environment('{%', '%}', '${', '}', '/*', '*/', '#', '##')
     tmpl = env.from_string(LINE_SYNTAX_PRIORITY2)
-    assert tmpl.render(seq=[1, 2]).strip() == '* 1 \n* 2'
+    assert tmpl.render(seq=[1, 2]).strip() == '* 1\n* 2'