about summary refs log tree commit homepage
path: root/test/test_wbuf.rb
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2014-02-08 03:08:27 -0500
committerEric Wong <e@80x24.org>2014-02-08 08:35:02 +0000
commitdda19354de0bc72c1ab7ea49537a0ae2b019e837 (patch)
treef404df6e7d9f17f23afb18e83d1178e3d04b0300 /test/test_wbuf.rb
parentd084e6caa23b585a62065b9c89503deb69be72e3 (diff)
downloadyahns-dda19354de0bc72c1ab7ea49537a0ae2b019e837.tar.gz
We may unnecessarily drop persistent connections from this bug,
and we had an incorrect assertion in our unit test, even.
Diffstat (limited to 'test/test_wbuf.rb')
-rw-r--r--test/test_wbuf.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_wbuf.rb b/test/test_wbuf.rb
index 25cdeba..644c76b 100644
--- a/test/test_wbuf.rb
+++ b/test/test_wbuf.rb
@@ -81,8 +81,8 @@ class TestWbuf < Testcase
     assert_equal b, IO.select([b], nil, nil, 5)[0][0]
     b.read(nr - 2) if nr > 2
     assert_equal b, IO.select([b], nil, nil, 5)[0][0]
-    assert_equal "HI", b.read(2)
-    assert_equal false, wbuf.wbuf_flush(a)
+    assert_equal "HI", b.read(2), "read the end of the response"
+    assert_equal true, wbuf.wbuf_flush(a)
   ensure
     a.close
     b.close