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:
parent
f7b68ecfcf
commit
8cf090743e
1 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ class TestProfileFrames < Test::Unit::TestCase
|
|||
singleton_method_p = [
|
||||
false, false, true, false, false, false,
|
||||
]
|
||||
methdo_names = [
|
||||
method_names = [
|
||||
"test_profile_frames",
|
||||
"baz",
|
||||
"bar",
|
||||
|
@ -83,7 +83,7 @@ class TestProfileFrames < Test::Unit::TestCase
|
|||
assert_equal(full_labels[i], full_label, err_msg)
|
||||
assert_equal(classes[i].to_s, classpath, 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)
|
||||
}
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue