diff options
| author | st0012 <stan001212@gmail.com> | 2022-07-21 11:15:39 +0100 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2022-07-22 23:34:49 +0900 |
| commit | b3be03074066f0c8ff87942a8dd68578f480f27b (patch) | |
| tree | 7786848959e3a862524e7148d19ba8549c867740 /test/reline/test_config.rb | |
| parent | 8f7e18882269ef3747312a390b06f02f7e2c98eb (diff) | |
[ruby/reline] Rename dialog_pointer_* to dialog_highlight_*
"Pointer" is not what we usually use to describe a selected item.
"Highlight" is a more common word for the scenario so we should use it instead.
https://github.com/ruby/reline/commit/b4279d1557
Diffstat (limited to 'test/reline/test_config.rb')
| -rw-r--r-- | test/reline/test_config.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/reline/test_config.rb b/test/reline/test_config.rb index eaee2fd580..6b4dca0b28 100644 --- a/test/reline/test_config.rb +++ b/test/reline/test_config.rb @@ -412,15 +412,15 @@ class Reline::Config::Test < Reline::TestCase def test_dialog_configurations @config.read_lines(<<~LINES.lines) set dialog-default-bg-color white - set dialog-pointer-bg-color black + set dialog-highlight-bg-color black set dialog-default-fg-color cyan - set dialog-pointer-fg-color magenta + set dialog-highlight-fg-color magenta LINES assert_equal :white, @config.dialog_default_bg_color - assert_equal :black, @config.dialog_pointer_bg_color + assert_equal :black, @config.dialog_highlight_bg_color assert_equal :cyan, @config.dialog_default_fg_color - assert_equal :magenta, @config.dialog_pointer_fg_color + assert_equal :magenta, @config.dialog_highlight_fg_color end end |
