diff options
| author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-21 14:22:24 +0000 |
|---|---|---|
| committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-21 14:22:24 +0000 |
| commit | a7b7a3547b6a75a4e14640ea2ec641019edc7c97 (patch) | |
| tree | 9dc8055d47480b47eed423dfce75d1c047760a58 | |
| parent | 1d7e2fbe2629f4f8a20a091bc85347f0a425c613 (diff) | |
| download | ruby-a7b7a3547b6a75a4e14640ea2ec641019edc7c97.tar.gz ruby-a7b7a3547b6a75a4e14640ea2ec641019edc7c97.tar.xz ruby-a7b7a3547b6a75a4e14640ea2ec641019edc7c97.zip | |
* bootstraptest/test_eval.rb: fix syntax.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16506 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | bootstraptest/test_eval.rb | 4 |
2 files changed, 6 insertions, 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> * ext/nkf/nkf-utf8/nkf.c (nkf_enc_find_index): diff --git a/bootstraptest/test_eval.rb b/bootstraptest/test_eval.rb index 4c8e5aaa0..7fdfda827 100644 --- a/bootstraptest/test_eval.rb +++ b/bootstraptest/test_eval.rb @@ -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]' |
