diff options
author | Nobuyoshi Nakada <[email protected]> | 2022-02-26 02:42:35 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2022-02-26 02:42:35 +0900 |
commit | e82f5db7891f45ec45c073d7eddfbd6cdefe97a8 (patch) | |
tree | 8a8b6c35faf13efa9b6e6ce57199c77cbc203449 /spec/ruby/library/date/parse_spec.rb | |
parent | 8780f15fd740a893095e749ef65f5f957fee37e3 (diff) |
Deprecate the unintentional ability to parse `Symbol`
Diffstat (limited to 'spec/ruby/library/date/parse_spec.rb')
-rw-r--r-- | spec/ruby/library/date/parse_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/library/date/parse_spec.rb b/spec/ruby/library/date/parse_spec.rb index ef72ba3f4e..bfbe86fbac 100644 --- a/spec/ruby/library/date/parse_spec.rb +++ b/spec/ruby/library/date/parse_spec.rb @@ -67,7 +67,7 @@ describe "Date#parse" do it "raises a TypeError trying to parse non-String-like object" do -> { Date.parse(1) }.should raise_error(TypeError) - -> { Date.parse(:invalid) }.should raise_error(TypeError) + -> { Date.parse([]) }.should raise_error(TypeError) end it "coerces using to_str" do |