summaryrefslogtreecommitdiff
path: root/tests/test_misc.py
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2013-09-23 10:58:27 -0700
committerThomas Kluyver <takowl@gmail.com>2013-09-23 10:58:27 -0700
commit8ea252d365155733cc17d77eccba9cbff4cd3e40 (patch)
treeaa2c57043130ce1b5dfe5cc468afebfdf8f0af17 /tests/test_misc.py
parent8b5e5bbbf2afbdc4f8606779b34991393ee9153d (diff)
downloadpexpect-8ea252d365155733cc17d77eccba9cbff4cd3e40.tar.gz
Fix SyntaxError in test_misc
Diffstat (limited to 'tests/test_misc.py')
-rwxr-xr-xtests/test_misc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_misc.py b/tests/test_misc.py
index 126c6c6..6c017a8 100755
--- a/tests/test_misc.py
+++ b/tests/test_misc.py
@@ -95,7 +95,7 @@ class TestCaseMisc(PexpectTestCase.PexpectTestCase):
# of `cat', and their related terminal and line-buffer handling
assert (page == six.b('abc\r\nabc\r\n123\r\n123\r\n') or
page == six.b('abc\r\n123\r\nabc\r\n123\r\n') or
- page == six.b('abc\r\n123abc\r\n\r\n123\r\n') , \
+ page == six.b('abc\r\n123abc\r\n\r\n123\r\n')) , \
"iterator did not work. page=%r"(page,)
def test_readlines(self):