Skip to content

Commit fa7abe0

Browse files
author
MarcoFalke
committed
[test] bctest.py: Revert faa41ee
1 parent e6a4d48 commit fa7abe0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/bctest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# Distributed under the MIT software license, see the accompanying
33
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
44
from __future__ import division,print_function,unicode_literals
5-
from io import open
65
import subprocess
76
import os
87
import json
@@ -17,7 +16,7 @@ def bctest(testDir, testObj, exeext):
1716
inputData = None
1817
if "input" in testObj:
1918
filename = testDir + "/" + testObj['input']
20-
inputData = open(filename, 'rb').read()
19+
inputData = open(filename).read()
2120
stdinCfg = subprocess.PIPE
2221

2322
outputFn = None

0 commit comments

Comments
 (0)