From 65264eadbd3a8e1a3a96024e559a4a72d97c71e4 Mon Sep 17 00:00:00 2001 From: nahi Date: Fri, 5 Sep 2003 11:28:27 +0000 Subject: * test/ruby/test_*.rb: replace 'assert(a == b)' with assert_equal(a, b)' git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4512 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_math.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/ruby/test_math.rb') diff --git a/test/ruby/test_math.rb b/test/ruby/test_math.rb index 15537159a3..58041eaa35 100644 --- a/test/ruby/test_math.rb +++ b/test/ruby/test_math.rb @@ -4,11 +4,11 @@ $KCODE = 'none' class TestMath < Test::Unit::TestCase def test_math - assert(Math.sqrt(4) == 2) + assert_equal(Math.sqrt(4), 2) self.class.class_eval { include Math } - assert(sqrt(4) == 2) + assert_equal(sqrt(4), 2) end end -- cgit v1.2.3