aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/test/bctest.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/bctest.py b/src/test/bctest.py
index fc59152ba1..8105b87ffa 100644
--- a/src/test/bctest.py
+++ b/src/test/bctest.py
@@ -2,7 +2,6 @@
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
from __future__ import division,print_function,unicode_literals
-from io import open
import subprocess
import os
import json
@@ -17,7 +16,7 @@ def bctest(testDir, testObj, exeext):
inputData = None
if "input" in testObj:
filename = testDir + "/" + testObj['input']
- inputData = open(filename, 'rb').read()
+ inputData = open(filename).read()
stdinCfg = subprocess.PIPE
outputFn = None