summaryrefslogtreecommitdiff
path: root/test/ruby/test_math.rb
diff options
context:
space:
mode:
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