summaryrefslogtreecommitdiff
path: root/test/rake/test_rake_linked_list.rb
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-02-27 11:55:47 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-02-27 11:55:47 +0000
commitb89e894399016def7979168d16eff9026012a710 (patch)
tree6a418b787d0222f68ce4a203bb49aeff90f03149 /test/rake/test_rake_linked_list.rb
parentca6b174078fa15f33655be704d9409fdbc4f9929 (diff)
* lib/rake: Update to rake (9237e74), typo fix and remove needless
private syntax. * test/rake: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49773 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rake/test_rake_linked_list.rb')
-rw-r--r--test/rake/test_rake_linked_list.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rake/test_rake_linked_list.rb b/test/rake/test_rake_linked_list.rb
index 10957fba6d..32d7306268 100644
--- a/test/rake/test_rake_linked_list.rb
+++ b/test/rake/test_rake_linked_list.rb
@@ -57,13 +57,13 @@ class TestLinkedList < Rake::TestCase
refute_equal short, list
end
- def test_converstion_to_string
+ def test_conversion_to_string
list = LinkedList.make(:one, :two, :three)
assert_equal "LL(one, two, three)", list.to_s
assert_equal "LL()", LinkedList.make().to_s
end
- def test_converstion_with_inspect
+ def test_conversion_with_inspect
list = LinkedList.make(:one, :two, :three)
assert_equal "LL(:one, :two, :three)", list.inspect
assert_equal "LL()", LinkedList.make().inspect