summaryrefslogtreecommitdiff
path: root/test/rake/test_rake_linked_list.rb
diff options
context:
space:
mode:
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