about summary refs log tree commit homepage
path: root/t/t0202-async-response-one-oh.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/t0202-async-response-one-oh.sh')
-rwxr-xr-xt/t0202-async-response-one-oh.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t0202-async-response-one-oh.sh b/t/t0202-async-response-one-oh.sh
index 80ffc1f..49b6cac 100755
--- a/t/t0202-async-response-one-oh.sh
+++ b/t/t0202-async-response-one-oh.sh
@@ -18,9 +18,9 @@ t_begin "setup and start" && {
 t_begin "send async requests off in parallel" && {
         t0=$(date +%s)
         curl="curl -0 --no-buffer -vsSf http://$listen/"
-        ( $curl 2>> $a_err | utee $a) &
-        ( $curl 2>> $b_err | utee $b) &
-        ( $curl 2>> $c_err | utee $c) &
+        ( $curl 2>> $a_err | tee $a) &
+        ( $curl 2>> $b_err | tee $b) &
+        ( $curl 2>> $c_err | tee $c) &
         wait
         t1=$(date +%s)
 }