diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2024-09-23 07:14:10 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-23 07:14:10 -0700 |
| commit | 34a40d3a50f71a4b5e06c36ed9f9110983984dbf (patch) | |
| tree | 69f647ce5f5dba8f16cb2a55a2511b89df4db87e /test/unit/statusline_spec.lua | |
| parent | 47e6b2233feffc6e9d94f6086fb904eb5688fa25 (diff) | |
| parent | 17027d64726864c7bbdba5bee004eb581ac4b54a (diff) | |
| download | rneovim-34a40d3a50f71a4b5e06c36ed9f9110983984dbf.tar.gz rneovim-34a40d3a50f71a4b5e06c36ed9f9110983984dbf.tar.bz2 rneovim-34a40d3a50f71a4b5e06c36ed9f9110983984dbf.zip | |
Merge #30435 refactor: rename "Dictionary" => "Dict"
Diffstat (limited to 'test/unit/statusline_spec.lua')
| -rw-r--r-- | test/unit/statusline_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/statusline_spec.lua b/test/unit/statusline_spec.lua index 973d9ec992..a97a4f41d7 100644 --- a/test/unit/statusline_spec.lua +++ b/test/unit/statusline_spec.lua @@ -56,14 +56,14 @@ describe('build_stl_str_hl', function() -- @param input_stl The format string for the statusline -- @param expected_stl The expected result string for the statusline -- - -- @param arg Options can be placed in an optional dictionary as the last parameter + -- @param arg Options can be placed in an optional dict as the last parameter -- .expected_cell_count The expected number of cells build_stl_str_hl will return -- .expected_byte_length The expected byte length of the string (defaults to byte length of expected_stl) -- .file_name The name of the file to be tested (useful in %f type tests) -- .fillchar The character that will be used to fill any 'extra' space in the stl local function statusline_test(description, statusline_cell_count, input_stl, expected_stl, arg) -- arg is the optional parameter - -- so we either fill in option with arg or an empty dictionary + -- so we either fill in option with arg or an empty dict local option = arg or {} local fillchar = option.fillchar or ' ' |