diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-08-16 06:11:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-16 06:11:05 +0800 |
commit | 10c5f35a8ddf2683e0c849f71c02b81556ece902 (patch) | |
tree | e511ce2860ccfe40b2f717249521d09e8774a06b | |
parent | 3cd5ef63fd17a4eb294856360039803f31a10a76 (diff) | |
download | rneovim-10c5f35a8ddf2683e0c849f71c02b81556ece902.tar.gz rneovim-10c5f35a8ddf2683e0c849f71c02b81556ece902.tar.bz2 rneovim-10c5f35a8ddf2683e0c849f71c02b81556ece902.zip |
vim-patch:9.0.1715: duplicate test in message_test.c (#24728)
Problem: duplicate test in message_test.c
Solution: Remove duplicate test and make functions static
closes: vim/vim#12803
https://github.com/vim/vim/commit/7772c93a3ec1ce60469e9aea9899687ae1141f34
-rw-r--r-- | test/unit/strings_spec.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/unit/strings_spec.lua b/test/unit/strings_spec.lua index d6c14e7a40..04d11d8f04 100644 --- a/test/unit/strings_spec.lua +++ b/test/unit/strings_spec.lua @@ -200,7 +200,6 @@ describe('vim_snprintf()', function() a('9 12345 7654321', buf, bsize, '%2$ld %1$u %3$lu', u(12345), l(9), ul(7654321)) a('9 1234567 7654321', buf, bsize, '%2$d %1$lu %3$lu', ul(1234567), i(9), ul(7654321)) a('9 1234567 7654321', buf, bsize, '%2$d %1$llu %3$lu', ull(1234567), i(9), ul(7654321)) - a('9 1234567 7654321', buf, bsize, '%2$d %1$llu %3$lu', ull(1234567), i(9), ul(7654321)) a('9 deadbeef 7654321', buf, bsize, '%2$d %1$x %3$lu', u(0xdeadbeef), i(9), ul(7654321)) a('9 c 7654321', buf, bsize, '%2$ld %1$c %3$lu', i(('c'):byte()), l(9), ul(7654321)) a('9 hi 7654321', buf, bsize, '%2$ld %1$s %3$lu', 'hi', l(9), ul(7654321)) |