summaryrefslogtreecommitdiff
path: root/test/options_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/options_test.rb')
-rw-r--r--test/options_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/options_test.rb b/test/options_test.rb
index f816b74..2f83fc4 100644
--- a/test/options_test.rb
+++ b/test/options_test.rb
@@ -121,11 +121,11 @@ describe Slop::Options do
describe "custom banner" do
it "is prefixed with defined banner" do
- @options_config = Slop::Options.new({banner: "custom banner"})
+ @options_config = Slop::Options.new(**{banner: "custom banner"})
assert_match(/^custom banner/, @options_config.to_s)
end
it "banner is disabled" do
- @options_config = Slop::Options.new({banner: false})
+ @options_config = Slop::Options.new(**{banner: false})
assert_match("", @options_config.to_s)
end
end