diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2018-09-08 11:20:11 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-09-08 11:20:11 +0900 |
| commit | f93734f6228e541ea4eee5f2dd208981ce6e38bd (patch) | |
| tree | f9cae1ed00e9b565e62c875106a7b71694b2966e /test/t | |
| parent | 625976d7931006bae7e960e561ecdaccb0cb6a28 (diff) | |
| parent | 366848996a6cce8e733246bce6c3f76d797003bb (diff) | |
| download | mruby-f93734f6228e541ea4eee5f2dd208981ce6e38bd.tar.gz mruby-f93734f6228e541ea4eee5f2dd208981ce6e38bd.zip | |
Merge pull request #4110 from dearblue/fix-typo1
Fix typo
Diffstat (limited to 'test/t')
| -rw-r--r-- | test/t/kernel.rb | 2 | ||||
| -rw-r--r-- | test/t/syntax.rb | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/t/kernel.rb b/test/t/kernel.rb index a730bdb24..74176fbd0 100644 --- a/test/t/kernel.rb +++ b/test/t/kernel.rb @@ -157,7 +157,7 @@ assert('Kernel#clone', '15.3.1.3.8') do assert_true a.respond_to?(:test) assert_false b.respond_to?(:test) assert_true c.respond_to?(:test) - + a.freeze d = a.clone assert_true d.frozen? diff --git a/test/t/syntax.rb b/test/t/syntax.rb index c5405aa9c..883cbd1ba 100644 --- a/test/t/syntax.rb +++ b/test/t/syntax.rb @@ -454,15 +454,15 @@ assert('multiline comments work correctly') do =begin this is a comment with nothing after begin and end =end -=begin this is a comment +=begin this is a comment this is a comment with extra after =begin =end =begin this is a comment that has =end with spaces after it -=end +=end =begin this is a comment this is a comment that has extra after =begin and =end with spaces after it -=end +=end line = __LINE__ =begin this is a comment this is a comment that has extra after =begin and =end with tabs after it |
