From ebac677cab2ac22235a49bbe24605d93f932538f Mon Sep 17 00:00:00 2001 From: yugui Date: Sun, 21 Jun 2009 09:13:25 +0000 Subject: 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 --- test/ruby/test_complex.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/ruby/test_complex.rb') 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]) -- cgit