[前][次][番号順一覧][スレッド一覧]

ruby-changes:42954

From: kazu <ko1@a...>
Date: Tue, 17 May 2016 21:57:54 +0900 (JST)
Subject: [ruby-changes:42954] kazu:r55028 (trunk): fix alignment

kazu	2016-05-17 21:57:49 +0900 (Tue, 17 May 2016)

  New Revision: 55028

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=55028

  Log:
    fix alignment

  Modified files:
    trunk/bootstraptest/test_literal.rb
Index: bootstraptest/test_literal.rb
===================================================================
--- bootstraptest/test_literal.rb	(revision 55027)
+++ bootstraptest/test_literal.rb	(revision 55028)
@@ -15,15 +15,15 @@ assert_equal 'sym',             ':sym' https://github.com/ruby/ruby/blob/trunk/bootstraptest/test_literal.rb#L15
 assert_equal ':sym',            ':sym.inspect'
 assert_equal 'Symbol',          ':sym.class'
 assert_equal '1234',            '1234'
-assert_equal 'Integer',          '1234.class'
+assert_equal 'Integer',         '1234.class'
 assert_equal '1234',            '1_2_3_4'
-assert_equal 'Integer',          '1_2_3_4.class'
+assert_equal 'Integer',         '1_2_3_4.class'
 assert_equal '18',              '0x12'
-assert_equal 'Integer',          '0x12.class'
+assert_equal 'Integer',         '0x12.class'
 assert_equal '15',              '0o17'
-assert_equal 'Integer',          '0o17.class'
+assert_equal 'Integer',         '0o17.class'
 assert_equal '5',               '0b101'
-assert_equal 'Integer',          '0b101.class'
+assert_equal 'Integer',         '0b101.class'
 assert_equal '123456789012345678901234567890', '123456789012345678901234567890'
 assert_equal 'Integer',         '123456789012345678901234567890.class'
 assert_equal '2.0',             '2.0'
@@ -99,7 +99,7 @@ assert_equal '[3]',             '[3].ins https://github.com/ruby/ruby/blob/trunk/bootstraptest/test_literal.rb#L99
 assert_equal '3',               'a = [3]; a[0]'
 assert_equal 'Array',           '[1,2].class'
 assert_equal '2',               '[1,2].size'
-assert_equal '[1, 2]',           '[1,2].inspect'
+assert_equal '[1, 2]',          '[1,2].inspect'
 assert_equal 'Array',           '[1,2,3,4,5].class'
 assert_equal '5',               '[1,2,3,4,5].size'
 assert_equal '[1, 2, 3, 4, 5]', '[1,2,3,4,5].inspect'
@@ -169,7 +169,7 @@ assert_equal 'a',               'r = ("a https://github.com/ruby/ruby/blob/trunk/bootstraptest/test_literal.rb#L169
 assert_equal 'c',               'r = ("a".."c"); r.end'
 
 assert_equal 'String',          '__FILE__.class'
-assert_equal 'Integer',          '__LINE__.class'
+assert_equal 'Integer',         '__LINE__.class'
 
 ###
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]