diff options
author | Thomas Kluyver <takowl@gmail.com> | 2014-06-01 17:51:34 -0700 |
---|---|---|
committer | Thomas Kluyver <takowl@gmail.com> | 2014-06-01 20:40:07 -0700 |
commit | 8d0e5684a479b93811f8433e672a041f4e0f25d2 (patch) | |
tree | 49da0c489ccf19295b47ec93c32d664f92dd678f /tests/test_log.py | |
parent | 4be9a878b994b77d210840e72353f2c5c3e07536 (diff) | |
download | pexpect-8d0e5684a479b93811f8433e672a041f4e0f25d2.tar.gz |
Fix imports in tests for Python 3
Closes gh-59
Diffstat (limited to 'tests/test_log.py')
-rwxr-xr-x | tests/test_log.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_log.py b/tests/test_log.py index d0d148a..4ad2256 100755 --- a/tests/test_log.py +++ b/tests/test_log.py @@ -22,7 +22,7 @@ import pexpect import unittest import os import tempfile -import PexpectTestCase +from . import PexpectTestCase # the program cat(1) may display ^D\x08\x08 when \x04 (EOF, Ctrl-D) is sent _CAT_EOF = b'^D\x08\x08' |