Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
adamstruck committed Jan 17, 2018
1 parent 98b1324 commit cef11df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/funnel_test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ def config_seconds(sec):


def check_version(cmd, version_str):
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
universal_newlines=True)
stdout, stderr = p.communicate()
return version_str in stdout

Expand Down

0 comments on commit cef11df

Please sign in to comment.