diff options
author | dundargoc <gocdundar@gmail.com> | 2024-05-25 13:33:59 +0200 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-05-25 15:15:36 +0200 |
commit | 52389e724366ebb2fb58f08c657f580900dd09ee (patch) | |
tree | 83b69f146a31078ac27ef3e146be8907c3febbfa | |
parent | fdeb01cd77404aba446c67af32134a2ff793a14b (diff) | |
download | rneovim-52389e724366ebb2fb58f08c657f580900dd09ee.tar.gz rneovim-52389e724366ebb2fb58f08c657f580900dd09ee.tar.bz2 rneovim-52389e724366ebb2fb58f08c657f580900dd09ee.zip |
test(unit): skip flaky 'typval.c dict extend() works' test
-rw-r--r-- | test/unit/eval/typval_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/eval/typval_spec.lua b/test/unit/eval/typval_spec.lua index c69c9b0fae..4e3b461396 100644 --- a/test/unit/eval/typval_spec.lua +++ b/test/unit/eval/typval_spec.lua @@ -2326,7 +2326,7 @@ describe('typval.c', function() return lib.tv_dict_extend(d1, d2, action) end, emsg) end - itp('works', function() + pending('works (skip due to flakiness)', function() local d1 = dict() alloc_log:check({ a.dict(d1) }) eq({}, dct2tbl(d1)) |