Skip to content

Commit c6f6939

Browse files
committed
Update test_benchmarks.py
1 parent 827001b commit c6f6939

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_benchmarks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def test_profile_conversion_time(self):
2121
proc = subprocess.Popen(
2222
["python", filename], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
2323
try:
24-
outs, errs = proc.communicate(timeout=15)
24+
outs = proc.communicate(timeout=15)[0]
2525
except subprocess.TimeoutExpired:
2626
proc.kill()
2727
return

0 commit comments

Comments
 (0)