diff options
author | Nathan Gass | 2023-02-27 17:38:34 +0100 |
---|---|---|
committer | Nathan Gass | 2023-02-27 17:38:34 +0100 |
commit | 17c700e501bd0c78efd0a8784993b9d0e1238f33 (patch) | |
tree | b31063645faf173101a9a7e156289976b3b8a999 | |
parent | 39d2607aa5c46fbdd78fd2204157be5032220b84 (diff) | |
download | itools-17c700e501bd0c78efd0a8784993b9d0e1238f33.tar.gz itools-17c700e501bd0c78efd0a8784993b9d0e1238f33.tar.bz2 itools-17c700e501bd0c78efd0a8784993b9d0e1238f33.zip |
make sure the output before the sleep is actually send
-rw-r--r-- | test/it_url.testserver.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/it_url.testserver.php b/test/it_url.testserver.php index 9f5f91c..242ccf6 100644 --- a/test/it_url.testserver.php +++ b/test/it_url.testserver.php @@ -42,7 +42,8 @@ switch ($_SERVER['PHP_SELF']) break; case "/long_sleep": - echo 'a'; + echo "a\n"; + flush(); sleep(6); echo 'Testserver output after long sleep'; break; |