Skip to content

Commit

Permalink
[ruby/reline] Use single quotes to match others in the file
Browse files Browse the repository at this point in the history
  • Loading branch information
aycabta authored and matzbot committed Sep 10, 2021
1 parent 9066496 commit 90f0f22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/reline/yamatanooroti/test_rendering.rb
Expand Up @@ -936,7 +936,7 @@ def test_autocomplete_empty

def test_autocomplete
start_terminal(20, 30, %W{ruby -I#{@pwd}/lib #{@pwd}/test/reline/yamatanooroti/multiline_repl --autocomplete}, startup_message: 'Multiline REPL.')
write("Str")
write('Str')
close
assert_screen(<<~'EOC')
Multiline REPL.
Expand All @@ -948,7 +948,7 @@ def test_autocomplete

def test_autocomplete_long_with_scrollbar
start_terminal(20, 30, %W{ruby -I#{@pwd}/lib #{@pwd}/test/reline/yamatanooroti/multiline_repl --autocomplete-long}, startup_message: 'Multiline REPL.')
write("S")
write('S')
close
assert_screen(<<~'EOC')
Multiline REPL.
Expand All @@ -973,7 +973,7 @@ def test_autocomplete_long_with_scrollbar

def test_autocomplete_long_with_scrollbar_scroll
start_terminal(20, 30, %W{ruby -I#{@pwd}/lib #{@pwd}/test/reline/yamatanooroti/multiline_repl --autocomplete-long}, startup_message: 'Multiline REPL.')
write("S" + "\C-i" * 16)
write('S' + "\C-i" * 16)
close
assert_screen(<<~'EOC')
Multiline REPL.
Expand Down

0 comments on commit 90f0f22

Please sign in to comment.