Skip to content

Commit 053308d

Browse files
committed
chore: lint fix test_text_actions
1 parent 462695f commit 053308d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/test_text_actions.lua

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ local get_lines = function()
2525
return child.api.nvim_buf_get_lines(0, 0, -1, true)
2626
end
2727

28-
2928
T["text_actions"] = MiniTest.new_set({
3029
hooks = {
3130
pre_case = function()
@@ -34,7 +33,7 @@ T["text_actions"] = MiniTest.new_set({
3433
},
3534
})
3635

37-
T['text_actions']['insert_f_string'] = function()
36+
T["text_actions"]["insert_f_string"] = function()
3837
child.type_keys("i", [[print("{foo}")]], "<left><esc>")
3938

4039
eq(get_lines(), { [[print(f"{foo}")]] })

0 commit comments

Comments
 (0)