Skip to content

Commit

Permalink
[test] bctest.py: Revert faa41ee
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoFalke committed Apr 14, 2016
1 parent e6a4d48 commit fa7abe0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/test/bctest.py
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit fa7abe0

Please sign in to comment.