From 972fc305997e6499e346b22d713cd1ad02823463 Mon Sep 17 00:00:00 2001 From: Stefan Hoffmann Date: Mon, 27 Oct 2014 17:32:55 +0100 Subject: [PATCH] unittest: increase number of retries in cimport --- test/unit/helpers.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/helpers.lua b/test/unit/helpers.lua index 84ce67da4e..544a53fa10 100644 --- a/test/unit/helpers.lua +++ b/test/unit/helpers.lua @@ -66,7 +66,7 @@ local function cimport(...) end local body = nil - for i=1, 3 do + for i=1, 10 do local stream = Preprocess.preprocess_stream(unpack(paths)) body = stream:read("*a") stream:close()