summaryrefslogtreecommitdiff
path: root/test/test_farm.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-07-09 18:18:02 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-07-09 18:18:02 -0400
commit9dee319c84c52c8e9201e1eb919bc919668366e6 (patch)
tree7115028ad625e5065da24f5a4b55bb53c1d417d1 /test/test_farm.py
parent221822595b4e040c66937a3f9574623a9756b736 (diff)
downloadpython-coveragepy-git-9dee319c84c52c8e9201e1eb919bc919668366e6.tar.gz
Py3k: some output is bytes instead of string, so convert since it doesn't matter.
Diffstat (limited to 'test/test_farm.py')
-rw-r--r--test/test_farm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_farm.py b/test/test_farm.py
index 239dac00..6e8f3467 100644
--- a/test/test_farm.py
+++ b/test/test_farm.py
@@ -135,7 +135,7 @@ class FarmTestCase(object):
retcode, output = run_command(cmd)
print output,
if outfile:
- open(outfile, "a+").write(output.decode('utf-8'))
+ open(outfile, "a+").write(output)
if retcode:
raise Exception("command exited abnormally")
finally: