summaryrefslogtreecommitdiff
path: root/spec/ruby/library/shellwords/shellwords_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/shellwords/shellwords_spec.rb')
-rw-r--r--spec/ruby/library/shellwords/shellwords_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/library/shellwords/shellwords_spec.rb b/spec/ruby/library/shellwords/shellwords_spec.rb
index fe86b6faab..d1b61e0a6e 100644
--- a/spec/ruby/library/shellwords/shellwords_spec.rb
+++ b/spec/ruby/library/shellwords/shellwords_spec.rb
@@ -19,11 +19,11 @@ describe "Shellwords#shellwords" do
end
it "raises ArgumentError when double quoted strings are misquoted" do
- -> { Shellwords.shellwords('a "b c d e') }.should raise_error(ArgumentError)
+ -> { Shellwords.shellwords('a "b c d e') }.should.raise(ArgumentError)
end
it "raises ArgumentError when single quoted strings are misquoted" do
- -> { Shellwords.shellwords("a 'b c d e") }.should raise_error(ArgumentError)
+ -> { Shellwords.shellwords("a 'b c d e") }.should.raise(ArgumentError)
end
# https://bugs.ruby-lang.org/issues/10055