@@ -25,29 +25,29 @@ assert_highlighted "/this/is/some/file.txt" "middle of the pane, absolute path,
2525
2626display_text "random /this/is/some/file.txt"
2727tmux_ctrl_f
28- assert_highlighted " /this/is/some/file.txt" "middle of the pane, absolute path, not beginning of the line"
28+ assert_highlighted "/this/is/some/file.txt" "middle of the pane, absolute path, not beginning of the line"
2929
3030display_text "another/file.txt"
3131tmux_ctrl_f
3232assert_highlighted "another/file.txt" "middle of the pane, relative path, beginning of the line"
3333
3434display_text "some text another/file.txt"
3535tmux_ctrl_f
36- assert_highlighted " another/file.txt" "middle of the pane, relative path, not beginning of the line"
36+ assert_highlighted "another/file.txt" "middle of the pane, relative path, not beginning of the line"
3737
3838create_output
3939sleep 0.2
4040send " some/file.xyz "
4141sleep 0.2
4242tmux_ctrl_f
43- assert_highlighted " some/file.xyz" "middle of the pane relative path, pane bottom"
43+ assert_highlighted "some/file.xyz" "middle of the pane relative path, pane bottom"
4444
4545# match selection when line contains escaped chars
4646#-------------------------------------------------
4747new_tmux_pane
4848display_text "filename=test.csv\r\nContent-Type: text/csv\r\n"
4949tmux_ctrl_f
50- assert_highlighted " text/csv" "match selection when line contains escaped chars"
50+ assert_highlighted "text/csv" "match selection when line contains escaped chars"
5151
5252# result navigation
5353#------------------
@@ -67,7 +67,7 @@ next_match
6767# /file/1.txt
6868previous_match
6969# /file/2.txt
70- assert_highlighted " /file/2.txt" "result navigation at the top of the pane"
70+ assert_highlighted "/file/2.txt" "result navigation at the top of the pane"
7171
7272create_output
7373display_text "/file/1.txt"
@@ -80,7 +80,7 @@ next_match
8080# /file/1.txt
8181previous_match
8282# /file/2.txt
83- assert_highlighted " /file/2.txt" "result navigation, middle of the pane"
83+ assert_highlighted "/file/2.txt" "result navigation, middle of the pane"
8484
8585# 2 matches on the same line
8686#---------------------------
@@ -92,7 +92,7 @@ assert_highlighted "/file/1.txt" "2 matches on the same line, first match"
9292display_text "/file/1.txt another/file/2.txt"
9393tmux_ctrl_f
9494next_match
95- assert_highlighted " another/file/2.txt" "2 matches on the same line, second match"
95+ assert_highlighted "another/file/2.txt" "2 matches on the same line, second match"
9696
9797# no match, first and last match
9898#-------------------------------
@@ -130,15 +130,15 @@ exit_irb
130130enter_irb
131131irb_display_text "some text file/within/irb.rb"
132132tmux_ctrl_f
133- irb_assert_highlighted " file/within/irb.rb" "irb console relative path, not beggining of line"
133+ irb_assert_highlighted "file/within/irb.rb" "irb console relative path, not beggining of line"
134134exit_irb
135135
136136enter_irb
137137irb_generate_output
138138send "puts /absolute/file/irb.rb"
139139sleep 5
140140tmux_ctrl_f
141- irb_assert_highlighted " /absolute/file/irb.rb" "irb console absolute path, pane bottom, not beggining of line"
141+ irb_assert_highlighted "/absolute/file/irb.rb" "irb console absolute path, pane bottom, not beggining of line"
142142exit_irb
143143
144144# quit
0 commit comments