diff options
author | Jeremy Evans <[email protected]> | 2022-01-05 22:23:48 -0800 |
---|---|---|
committer | Jeremy Evans <[email protected]> | 2022-01-06 08:03:33 -0800 |
commit | 3f6bfe49db29df00d01952e3cd109afb20017e4e (patch) | |
tree | 27a963479841f753e9767e13d76bb49f090ca612 /test/ruby/test_module.rb | |
parent | 24b53b1f3a041a9214437b6465b3e69efcd2db98 (diff) |
Update test/ruby/test_module.rb
Co-authored-by: Nobuyoshi Nakada <[email protected]>
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/5398
Diffstat (limited to 'test/ruby/test_module.rb')
-rw-r--r-- | test/ruby/test_module.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb index b84a090fce..9368940050 100644 --- a/test/ruby/test_module.rb +++ b/test/ruby/test_module.rb @@ -526,7 +526,7 @@ class TestModule < Test::Unit::TestCase super end end.new - assert_equal(true, m < Enumerable) + assert_operator(m, :<, Enumerable) end def test_prepend_self |