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:
parent
5dd3a0e2dd
commit
a16e394bbf
2 changed files with 6 additions and 2 deletions
|
@ -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>
|
Wed May 21 17:46:17 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* ext/nkf/nkf-utf8/nkf.c (nkf_enc_find_index):
|
* ext/nkf/nkf-utf8/nkf.c (nkf_enc_find_index):
|
||||||
|
|
|
@ -268,7 +268,7 @@ assert_equal 'ok', %q{
|
||||||
nil.instance_eval {
|
nil.instance_eval {
|
||||||
def a() :a end
|
def a() :a end
|
||||||
}
|
}
|
||||||
rescue => TypeError
|
rescue TypeError
|
||||||
:ok
|
:ok
|
||||||
end
|
end
|
||||||
}, '[ruby-core:16796]'
|
}, '[ruby-core:16796]'
|
||||||
|
@ -278,7 +278,7 @@ assert_equal 'ok', %q{
|
||||||
nil.instance_exec {
|
nil.instance_exec {
|
||||||
def a() :a end
|
def a() :a end
|
||||||
}
|
}
|
||||||
rescue => TypeError
|
rescue TypeError
|
||||||
:ok
|
:ok
|
||||||
end
|
end
|
||||||
}, '[ruby-core:16796]'
|
}, '[ruby-core:16796]'
|
||||||
|
|
Loading…
Add table
Reference in a new issue