summaryrefslogtreecommitdiff
path: root/test/ruby/test_math.rb
diff options
context:
space:
mode:
authornahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-05 11:28:27 +0000
committernahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-05 11:28:27 +0000
commit65264eadbd3a8e1a3a96024e559a4a72d97c71e4 (patch)
treef76634ece5171d4b04d427a6a19a1d2d92ef47d8 /test/ruby/test_math.rb
parentd9f38cbee88fdbb06d8577496062918da39fdeab (diff)
* 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
Diffstat (limited to 'test/ruby/test_math.rb')
-rw-r--r--test/ruby/test_math.rb4
1 files changed, 2 insertions, 2 deletions
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