summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-05-20 11:24:15 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-05-20 11:24:15 +0900
commit3fc8f0435a03e82e24e2ee0224305ff279932520 (patch)
tree40384d66bc535c721b022e27938ee7a935320444 /test
parentb0477f1d3f07e8f84c9ef4980f54071e58c64685 (diff)
downloadmruby-3fc8f0435a03e82e24e2ee0224305ff279932520.tar.gz
mruby-3fc8f0435a03e82e24e2ee0224305ff279932520.zip
correct comment; ref #2297
Diffstat (limited to 'test')
-rw-r--r--test/t/exception.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/t/exception.rb b/test/t/exception.rb
index 816c3241b..ddf0a315c 100644
--- a/test/t/exception.rb
+++ b/test/t/exception.rb
@@ -379,7 +379,7 @@ end
assert('Raise in rescue') do
assert_raise(ArgumentError) do
begin
- raise "" # StandardError
+ raise "" # RuntimeError
rescue
raise ArgumentError
end