Skip to content

Commit

Permalink
Fix permission_prompt_test
Browse files Browse the repository at this point in the history
This problem was introduced in 37e3d (#1504).
  • Loading branch information
ry committed Jan 13, 2019
1 parent 3b59323 commit da98c32
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tools/permission_prompt_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@ const test = {
listen("tcp", "127.0.0.1:4540");
},
needsRun: () => {
run({ args: ["python", "-c", "import sys; sys.stdout.write('hello')"] });
run({
args: [
"python",
"-c",
"import sys; sys.stdout.write('hello'); sys.stdout.flush()"
]
});
}
}[name];

Expand Down

0 comments on commit da98c32

Please sign in to comment.