From 731d74c498e458e13225a54d308925a470219b81 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Fri, 26 Aug 2022 16:59:34 -0300 Subject: tests: run quiet curl in mock API calls --- spec/util/test_env.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/util/test_env.lua b/spec/util/test_env.lua index 44021147..8705a695 100644 --- a/spec/util/test_env.lua +++ b/spec/util/test_env.lua @@ -920,7 +920,7 @@ local function mock_api_call(path) if test_env.TEST_TARGET_OS == "windows" then return test_env.execute(Q(test_env.testing_paths.win_tools .. "/wget") .. " --quiet --timeout=5 --tries=1 localhost:8080" .. path) else - return test_env.execute("curl localhost:8080" .. path) + return test_env.execute("curl -s localhost:8080" .. path) end end -- cgit v1.2.3-55-g6feb