From 7ad8c717c61d8caed71a740acfee4bfa58cb7ce7 Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Sun, 13 Apr 2025 09:46:50 +0200 Subject: [PATCH] tests: fix failing test after c7704c6bc7849a2c09ac the tests fail, because the tests expect '%l' in the output of `g:airline_section_z`, but it is now actually '%2l'. So let's change the expected output for the test. Signed-off-by: Christian Brabandt --- test/init.vimspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/init.vimspec b/test/init.vimspec index 4a68393b..9658c2dc 100644 --- a/test/init.vimspec +++ b/test/init.vimspec @@ -47,7 +47,7 @@ Describe init.vim It section z should be line numbers Assert Match(g:airline_section_z, '%p%%') - Assert Match(g:airline_section_z, '%l') + Assert Match(g:airline_section_z, '%2l') Assert Match(g:airline_section_z, '%v') End