diff options
author | Stefan Hoffmann <stefan991@gmail.com> | 2014-10-27 17:32:55 +0100 |
---|---|---|
committer | Stefan Hoffmann <stefan991@gmail.com> | 2014-10-30 19:05:39 +0100 |
commit | 972fc305997e6499e346b22d713cd1ad02823463 (patch) | |
tree | c40070af63e73c8248e4d6a71cd5ba2b7693aa93 | |
parent | 741cb5be083fd6349ab1102c25474ad731e7dda8 (diff) | |
download | rneovim-972fc305997e6499e346b22d713cd1ad02823463.tar.gz rneovim-972fc305997e6499e346b22d713cd1ad02823463.tar.bz2 rneovim-972fc305997e6499e346b22d713cd1ad02823463.zip |
unittest: increase number of retries in cimport
-rw-r--r-- | test/unit/helpers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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() |