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.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ruby/test_math.rb b/test/ruby/test_math.rb
index 58041eaa35..c5ddbbdb05 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_equal(Math.sqrt(4), 2)
-
+ assert_equal(2, Math.sqrt(4))
+
self.class.class_eval {
include Math
}
- assert_equal(sqrt(4), 2)
+ assert_equal(2, sqrt(4))
end
end