From ea976f02e0ad3ef7ab026b141a336229aa089c42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sun, 15 Sep 2019 11:18:35 +0200 Subject: Fix h2spec_SUITE init_per_suite return values --- test/h2spec_SUITE.erl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/h2spec_SUITE.erl b/test/h2spec_SUITE.erl index 173a7ac..2ed9df8 100644 --- a/test/h2spec_SUITE.erl +++ b/test/h2spec_SUITE.erl @@ -27,11 +27,11 @@ all() -> init_per_suite(Config) -> case os:getenv("H2SPEC") of false -> - skip; + {skip, "H2SPEC environment variable undefined."}; H2spec -> case filelib:is_file(H2spec) of false -> - skip; + {skip, "H2SPEC executable not found."}; true -> cowboy_test:init_http(h2spec, #{ env => #{dispatch => init_dispatch()}, -- cgit v1.2.3