1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

test_profile_frames.rb: fix typo

* test/-ext-/debug/test_profile_frames.rb (test_profile_frames): fix
  typo, methdo_names to method_names.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43284 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-10-14 19:14:17 +00:00
parent f7b68ecfcf
commit 8cf090743e

View file

@ -54,7 +54,7 @@ class TestProfileFrames < Test::Unit::TestCase
singleton_method_p = [ singleton_method_p = [
false, false, true, false, false, false, false, false, true, false, false, false,
] ]
methdo_names = [ method_names = [
"test_profile_frames", "test_profile_frames",
"baz", "baz",
"bar", "bar",
@ -83,7 +83,7 @@ class TestProfileFrames < Test::Unit::TestCase
assert_equal(full_labels[i], full_label, err_msg) assert_equal(full_labels[i], full_label, err_msg)
assert_equal(classes[i].to_s, classpath, err_msg) assert_equal(classes[i].to_s, classpath, err_msg)
assert_equal(singleton_method_p[i], singleton_p, err_msg) assert_equal(singleton_method_p[i], singleton_p, err_msg)
assert_equal(methdo_names[i], method_name, err_msg) assert_equal(method_names[i], method_name, err_msg)
assert_equal(qualified_method_names[i], qualified_method_name, err_msg) assert_equal(qualified_method_names[i], qualified_method_name, err_msg)
} }
end end