We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3078cd1 commit 8b7c850Copy full SHA for 8b7c850
1 file changed
tests/plugin/spec/editorconfig_spec.rb
@@ -18,7 +18,8 @@ def test_editorconfig(vim, file_name, expected_values)
18
vim.edit(File.join(BASE_PATH, file_name))
19
20
expected_values.each do |key, val|
21
- expect(vim.echo("&l:#{key}")).to eq(val)
+ vimval = vim.echo("&l:#{key}")
22
+ expect(vimval).to eq(val), "key #{key} had value #{vimval}, but I expected #{val}"
23
end
24
25
vim.command 'bd!'
0 commit comments