1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* bootstraptest/test_eval.rb: fix syntax.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16506 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2008-05-21 14:22:24 +00:00
parent 5dd3a0e2dd
commit a16e394bbf
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Wed May 21 23:20:21 2008 Koichi Sasada <ko1@atdot.net>
* bootstraptest/test_eval.rb: fix syntax.
Wed May 21 17:46:17 2008 NARUSE, Yui <naruse@ruby-lang.org>
* ext/nkf/nkf-utf8/nkf.c (nkf_enc_find_index):

View file

@ -268,7 +268,7 @@ assert_equal 'ok', %q{
nil.instance_eval {
def a() :a end
}
rescue => TypeError
rescue TypeError
:ok
end
}, '[ruby-core:16796]'
@ -278,7 +278,7 @@ assert_equal 'ok', %q{
nil.instance_exec {
def a() :a end
}
rescue => TypeError
rescue TypeError
:ok
end
}, '[ruby-core:16796]'