Commit ee40f9bb authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #3195 from franckverrot/master

Correct method name
parents 86821379 f6a2f676
......@@ -373,7 +373,7 @@ assert('Raise in ensure') do
end
end
def backtrace_avaialble?
def backtrace_available?
begin
raise "XXX"
rescue => exception
......@@ -382,7 +382,7 @@ def backtrace_avaialble?
end
assert('GC in rescue') do
skip "backtrace isn't avaialble" unless backtrace_avaialble?
skip "backtrace isn't available" unless backtrace_available?
line = nil
begin
......@@ -401,7 +401,7 @@ assert('GC in rescue') do
end
assert('Method call in rescue') do
skip "backtrace isn't avaialble" unless backtrace_avaialble?
skip "backtrace isn't available" unless backtrace_available?
line = nil
begin
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment