diff options
author | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-05-17 12:57:49 +0000 |
---|---|---|
committer | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-05-17 12:57:49 +0000 |
commit | 3118d1e46a3e39918f049990274a9900c106836c (patch) | |
tree | a3d71b47860e66734d96b8c9d96047d82550c1e8 /bootstraptest | |
parent | c1664c7032260c6cd7dfb945f4f3a1a12ae3bd0a (diff) |
fix alignment
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55028 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rw-r--r-- | bootstraptest/test_literal.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/bootstraptest/test_literal.rb b/bootstraptest/test_literal.rb index 73b0a82984..e79092e411 100644 --- a/bootstraptest/test_literal.rb +++ b/bootstraptest/test_literal.rb @@ -15,15 +15,15 @@ assert_equal 'sym', ':sym' 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].inspect' 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".."c"); r.begin' assert_equal 'c', 'r = ("a".."c"); r.end' assert_equal 'String', '__FILE__.class' -assert_equal 'Integer', '__LINE__.class' +assert_equal 'Integer', '__LINE__.class' ### |