about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--t/async-response-no-autochunk.ru1
-rw-r--r--t/async-response.ru1
2 files changed, 0 insertions, 2 deletions
diff --git a/t/async-response-no-autochunk.ru b/t/async-response-no-autochunk.ru
index 67c6403..1eda553 100644
--- a/t/async-response-no-autochunk.ru
+++ b/t/async-response-no-autochunk.ru
@@ -12,7 +12,6 @@ EOF
 run lambda { |env|
   env['rainbows.autochunk'] = false
   io = IO.popen(script, 'rb')
-  io.sync = true
   [
     200,
     {
diff --git a/t/async-response.ru b/t/async-response.ru
index ef76504..b45f1b2 100644
--- a/t/async-response.ru
+++ b/t/async-response.ru
@@ -2,7 +2,6 @@ use Rack::Chunked
 use Rainbows::DevFdResponse
 run lambda { |env|
   io = IO.popen('for i in 0 1 2 3 4 5 6 7 8 9; do date; sleep 1; done', 'rb')
-  io.sync = true
   [
     200,
     {