Skip to content
This repository has been archived by the owner on Mar 8, 2018. It is now read-only.

Commit

Permalink
Fix EOL tests for Python 2.7
Browse files Browse the repository at this point in the history
Patch from: Mike Bonnet <mikeb@redhat.com>

Change-Id: I3a3a3e57c1c94cac0ee020e41882b86dc9a4d4be
  • Loading branch information
R. Tyler Croy committed Dec 13, 2010
1 parent 4fc4045 commit 86229c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cheetah/Tests/SyntaxAndOutput.py
Expand Up @@ -848,17 +848,17 @@ def test9(self):
def test10(self): def test10(self):
r"""func placeholder - with ('''\nstring\n''')""" r"""func placeholder - with ('''\nstring\n''')"""
self.verify("$aFunc('''\naoeu\n''')", self.verify("$aFunc('''\naoeu\n''')",
"\naoeu\n") "\naoeu\n", convertEOLs=False)


def test11(self): def test11(self):
r"""func placeholder - with ('''\nstring'\n''')""" r"""func placeholder - with ('''\nstring'\n''')"""
self.verify("$aFunc('''\naoeu'\n''')", self.verify("$aFunc('''\naoeu'\n''')",
"\naoeu'\n") "\naoeu'\n", convertEOLs=False)


def test12(self): def test12(self):
r'''func placeholder - with ("""\nstring\n""")''' r'''func placeholder - with ("""\nstring\n""")'''
self.verify('$aFunc("""\naoeu\n""")', self.verify('$aFunc("""\naoeu\n""")',
"\naoeu\n") "\naoeu\n", convertEOLs=False)


def test13(self): def test13(self):
"""func placeholder - with (string*int)""" """func placeholder - with (string*int)"""
Expand Down

0 comments on commit 86229c1

Please sign in to comment.