diff options
| author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-06-21 09:13:25 +0000 |
|---|---|---|
| committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-06-21 09:13:25 +0000 |
| commit | ebac677cab2ac22235a49bbe24605d93f932538f (patch) | |
| tree | 22c032e6a46989114227a0dccb5b6979847bbcee /test/ruby/test_complex.rb | |
| parent | 84e93cc586afd7f2b159cabf399d1d37cddb29de (diff) | |
merges r23642 from trunk into ruby_1_9_1.
--
removed extra spaces.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@23777 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_complex.rb')
| -rw-r--r-- | test/ruby/test_complex.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ruby/test_complex.rb b/test/ruby/test_complex.rb index d5a8a1852..74d6d5dd8 100644 --- a/test/ruby/test_complex.rb +++ b/test/ruby/test_complex.rb @@ -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]) |
