Skip to content

Commit ea2b4f9

Browse files
committed
More time for CI
1 parent fcc402d commit ea2b4f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/aleph/http_test.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@
510510
echo-handler (fn [{:keys [body]}] {:body (bs/to-string body)})
511511
slow-handler (fn [_] {:body (slow-stream)})]
512512
(testing "Server is slow to write"
513-
(with-handler-options slow-handler {:idle-timeout 150
513+
(with-handler-options slow-handler {:idle-timeout 200
514514
:port port}
515515
(is (= "012345" (bs/to-string (:body @(http/get url)))))))
516516
(testing "Server is too slow to write"
@@ -519,7 +519,7 @@
519519
(is (= ""
520520
(bs/to-string (:body @(http/get url)))))))
521521
(testing "Client is slow to write"
522-
(with-handler-options echo-handler {:idle-timeout 150
522+
(with-handler-options echo-handler {:idle-timeout 200
523523
:port port
524524
:raw-stream? true}
525525
(is (= "012345" (bs/to-string (:body @(http/put url {:body (slow-stream)})))))))

0 commit comments

Comments
 (0)