diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-11-23 06:43:32 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-11-23 06:43:32 -0500 |
commit | ff212b66ddbdbf123cc0c43811fa7a331ce7de92 (patch) | |
tree | f92a6adf1ce462a865389ce1930c5d995112aecb /tests/helpers.py | |
parent | 54b6c9b9189cdd4575a41158ad6159a92753e159 (diff) | |
download | python-coveragepy-ff212b66ddbdbf123cc0c43811fa7a331ce7de92.tar.gz |
Use a 2/3 name for unicode
Diffstat (limited to 'tests/helpers.py')
-rw-r--r-- | tests/helpers.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/helpers.py b/tests/helpers.py index f4bff2b..ebc15cd 100644 --- a/tests/helpers.py +++ b/tests/helpers.py @@ -8,6 +8,7 @@ import subprocess import sys from coverage import env +from coverage.backward import unicode_class from coverage.misc import output_encoding @@ -17,7 +18,7 @@ def run_command(cmd): Returns the exit status code and the combined stdout and stderr. """ - if env.PY2 and isinstance(cmd, unicode): + if env.PY2 and isinstance(cmd, unicode_class): cmd = cmd.encode(sys.getfilesystemencoding()) # In some strange cases (PyPy3 in a virtualenv!?) the stdout encoding of |