1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

removed extra spaces.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23642 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tadf 2009-06-07 10:05:14 +00:00
parent 8376d7cca0
commit c77cd2c11b
2 changed files with 7 additions and 7 deletions

View file

@ -824,13 +824,13 @@ class Complex_Test < Test::Unit::TestCase
def test_to_c
c = nil.to_c
assert_equal([0,0] , [c.real, c.imag])
assert_equal([0,0], [c.real, c.imag])
c = 0.to_c
assert_equal([0,0] , [c.real, c.imag])
assert_equal([0,0], [c.real, c.imag])
c = 1.to_c
assert_equal([1,0] , [c.real, c.imag])
assert_equal([1,0], [c.real, c.imag])
c = 1.1.to_c
assert_equal([1.1, 0], [c.real, c.imag])