From 843b104fcb75bcd217359a8b02d0b1f263d42602 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Mon, 27 Nov 2017 13:23:31 +0100 Subject: Don't send the response immediately when using h2spec In some cases we were sending a response faster than h2spec was sending us the test case data, resulting in the request being processed successfully instead of failing as expected. --- test/h2spec_SUITE.erl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/h2spec_SUITE.erl') diff --git a/test/h2spec_SUITE.erl b/test/h2spec_SUITE.erl index 28e3fa8..fe93fdc 100644 --- a/test/h2spec_SUITE.erl +++ b/test/h2spec_SUITE.erl @@ -40,8 +40,8 @@ end_per_suite(_Config) -> init_dispatch() -> cowboy_router:compile([ - {"localhost", [ - {"/", hello_h, []} + {'_', [ + {"/", delay_hello_h, 500} ]} ]). -- cgit v1.2.3