diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/crossfile/diagnostic.lua | 2 | ||||
-rw-r--r-- | test/diagnostics/init.lua | 2 | ||||
-rw-r--r-- | test/full/example.lua | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/crossfile/diagnostic.lua b/test/crossfile/diagnostic.lua index 0a32ddb0..43028744 100644 --- a/test/crossfile/diagnostic.lua +++ b/test/crossfile/diagnostic.lua @@ -56,7 +56,7 @@ function TEST(datas) local results = {} for _, data in ipairs(datas) do local uri = furi.encode(data.path) - core(uri, function (result) + core(uri, false, function (result) results[#results+1] = { result.start, result.finish, diff --git a/test/diagnostics/init.lua b/test/diagnostics/init.lua index db4bbac9..cfe29d04 100644 --- a/test/diagnostics/init.lua +++ b/test/diagnostics/init.lua @@ -33,7 +33,7 @@ function TEST(script, ...) files.open('') local origins = {} local results = {} - core('', function (result) + core('', false, function (result) results[#results+1] = { result.start, result.finish } origins[#origins+1] = result end) diff --git a/test/full/example.lua b/test/full/example.lua index cae2df07..ed5c3b16 100644 --- a/test/full/example.lua +++ b/test/full/example.lua @@ -53,7 +53,7 @@ local function testIfExit(path) for i = 1, max do files.open('') files.setText('', buf) - diag('', function () end) + diag('', false, function () end) local passed = os.clock() - clock if passed >= 1.0 or i == max then need = passed / i |