Skip to content

Commit

Permalink
Autocorrect Minitest/AssertKindOf offenses
Browse files Browse the repository at this point in the history
  • Loading branch information
mvz committed Mar 17, 2024
1 parent 292ed59 commit d0f85aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/full/replace_eval_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def test_module_eval_binding
RUBY

assert_equal 33, orig.new.value
assert orig.new.f.is_a?(Proc)
assert_kind_of Proc, orig.new.f

y = 44
ignore(y)
Expand All @@ -344,7 +344,7 @@ def test_module_eval_binding
RUBY

assert_equal 44, live.new.value
assert live.new.g.is_a?(Proc)
assert_kind_of Proc, live.new.g

assert_equal no_arg_block(:lambda, "g return"),
live.new.g.to_ast
Expand Down

0 comments on commit d0f85aa

Please sign in to comment.