We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5440b2c commit 0ac5c57Copy full SHA for 0ac5c57
.github/workflows/test.yaml
@@ -21,6 +21,7 @@ jobs:
21
- '3.1'
22
- '3.2'
23
- '3.3'
24
+ - '3.4'
25
- jruby-head
26
- truffleruby-head
27
include:
test/spec_headers.rb
@@ -220,8 +220,8 @@ def test_has_value
220
221
def test_inspect
222
%i'inspect to_s'.each do |meth|
223
- assert_equal '{}', @h.send(meth)
224
- assert_equal '{"ab"=>"1", "cd"=>"2", "3"=>"4"}', @fh.send(meth)
+ assert_equal({}.inspect, @h.send(meth))
+ assert_equal({"ab"=>"1", "cd"=>"2", "3"=>"4"}.inspect, @fh.send(meth))
225
end
226
227
0 commit comments