summaryrefslogtreecommitdiffhomepage
path: root/test/t
diff options
context:
space:
mode:
authorFelix Jones <[email protected]>2016-11-10 20:01:59 +0000
committerFelix Jones <[email protected]>2016-11-10 20:01:59 +0000
commit70aa6dc38d75dd6b1e2c76f290bc576e36e36ea3 (patch)
tree2169dd999e756702a696dbd1be553b7560c2416b /test/t
parentcc5f40b2dbcd8e0ea703e820dcf203619b5f1003 (diff)
parent3f002b6993df9ea4843e2479d706e7426d57bb5a (diff)
downloadmruby-70aa6dc38d75dd6b1e2c76f290bc576e36e36ea3.tar.gz
mruby-70aa6dc38d75dd6b1e2c76f290bc576e36e36ea3.zip
Merge branch 'master' into android.rake-ndk-clang
Diffstat (limited to 'test/t')
-rw-r--r--test/t/exception.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/t/exception.rb b/test/t/exception.rb
index 839250ea8..2dc8f5487 100644
--- a/test/t/exception.rb
+++ b/test/t/exception.rb
@@ -338,10 +338,13 @@ assert('Exception 19') do
begin
1 * "b"
ensure
- @e = self.z
+ @e = self.zz
end
end
+ def zz
+ true
+ end
def z
true
end