File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -660,7 +660,7 @@ describe("can handle treesitter identifiers", function()
660
660
661
661
check_lines ({
662
662
" XYZ=123" ,
663
- ' echo "DEBUGPRINT[1]: ' .. filename .. ' :1: XYZ=${XYZ}"' ,
663
+ ' >&2 echo "DEBUGPRINT[1]: ' .. filename .. ' :1: XYZ=${XYZ}"' ,
664
664
})
665
665
666
666
assert .are .same (vim .api .nvim_win_get_cursor (0 ), { 1 , 1 })
@@ -1169,7 +1169,7 @@ describe("check python indenting", function()
1169
1169
1170
1170
check_lines ({
1171
1171
" x = 1" ,
1172
- ' print(f"DEBUGPRINT[1]: ' .. filename .. ' :1 (after x = 1)")' ,
1172
+ ' print(f"DEBUGPRINT[1]: ' .. filename .. ' :1 (after x = 1)", file=sys.stderr )' ,
1173
1173
" y = 2" ,
1174
1174
})
1175
1175
end )
@@ -1186,7 +1186,7 @@ describe("check python indenting", function()
1186
1186
" def xyz():" ,
1187
1187
' print(f"DEBUGPRINT[1]: '
1188
1188
.. filename
1189
- .. ' :1 (after def xyz():)")' ,
1189
+ .. ' :1 (after def xyz():)", file=sys.stderr )' ,
1190
1190
" pass" ,
1191
1191
})
1192
1192
end )
@@ -1203,7 +1203,7 @@ describe("check python indenting", function()
1203
1203
check_lines ({
1204
1204
" def xyz():" ,
1205
1205
" x = 1" ,
1206
- ' print(f"DEBUGPRINT[1]: ' .. filename .. ' :2 (after x = 1)")' ,
1206
+ ' print(f"DEBUGPRINT[1]: ' .. filename .. ' :2 (after x = 1)", file=sys.stderr )' ,
1207
1207
" y = 2" ,
1208
1208
})
1209
1209
end )
You can’t perform that action at this time.
0 commit comments