summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorR. Tyler Croy <tyler@monkeypox.org>2010-12-12 19:46:52 -0800
committerR. Tyler Croy <tyler@monkeypox.org>2010-12-12 19:46:52 -0800
commit86229c10e234813c19f49882ddd4a2321dc2edb9 (patch)
tree18cbb98ca203d8bc716e9e754a7d81684fe82e56
parent4fc404506214df31f3be7b3e6ffd08bda4472f4b (diff)
downloadpython-cheetah-86229c10e234813c19f49882ddd4a2321dc2edb9.tar.gz
Fix EOL tests for Python 2.7
Patch from: Mike Bonnet <mikeb@redhat.com> Change-Id: I3a3a3e57c1c94cac0ee020e41882b86dc9a4d4be
-rw-r--r--cheetah/Tests/SyntaxAndOutput.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cheetah/Tests/SyntaxAndOutput.py b/cheetah/Tests/SyntaxAndOutput.py
index e052e6e..80e2b3f 100644
--- a/cheetah/Tests/SyntaxAndOutput.py
+++ b/cheetah/Tests/SyntaxAndOutput.py
@@ -848,17 +848,17 @@ class Placeholders_Calls(OutputTest):
def test10(self):
r"""func placeholder - with ('''\nstring\n''')"""
self.verify("$aFunc('''\naoeu\n''')",
- "\naoeu\n")
+ "\naoeu\n", convertEOLs=False)
def test11(self):
r"""func placeholder - with ('''\nstring'\n''')"""
self.verify("$aFunc('''\naoeu'\n''')",
- "\naoeu'\n")
+ "\naoeu'\n", convertEOLs=False)
def test12(self):
r'''func placeholder - with ("""\nstring\n""")'''
self.verify('$aFunc("""\naoeu\n""")',
- "\naoeu\n")
+ "\naoeu\n", convertEOLs=False)
def test13(self):
"""func placeholder - with (string*int)"""