summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-14 19:14:17 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-14 19:14:17 +0000
commit8cf090743e7a20c07be0bdf28f06ca902b7554c7 (patch)
tree287007e4cc37bf49a3c7c430ec10bb1bb3f3eabc /test
parentf7b68ecfcfd10cbf0fc1b6f3393c6d26bd7e32cf (diff)
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
Diffstat (limited to 'test')
-rw-r--r--test/-ext-/debug/test_profile_frames.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/-ext-/debug/test_profile_frames.rb b/test/-ext-/debug/test_profile_frames.rb
index 7c00aa066b..f3184b97a3 100644
--- a/test/-ext-/debug/test_profile_frames.rb
+++ b/test/-ext-/debug/test_profile_frames.rb
@@ -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