Skip to content

Commit c2daa13

Browse files
committed
Fix test that does not catch error
1 parent 432cfd2 commit c2daa13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ async def run_command_and_detect_errors(async_process_runner, command, time):
44
throw an Exception in case any unresolved Exceptions are detected in the output of the command.
55
"""
66
await async_process_runner.run(command, timeout_sec=time)
7-
scan_for_errors(async_process_runner.stderr)
7+
await scan_for_errors(async_process_runner.stderr)
88

99

1010
async def scan_for_errors(async_iterable):

0 commit comments

Comments
 (0)