summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tools.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_tools.py')
-rw-r--r--Lib/test/test_tools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_tools.py b/Lib/test/test_tools.py
index 9403da7..006220a 100644
--- a/Lib/test/test_tools.py
+++ b/Lib/test/test_tools.py
@@ -50,7 +50,7 @@ class PindentTests(unittest.TestCase):
(sys.executable, self.script) + args,
stdin=subprocess.PIPE, stdout=subprocess.PIPE,
universal_newlines=True) as proc:
- out, err = proc.communicate(source.encode())
+ out, err = proc.communicate(source)
self.assertIsNone(err)
return out