mirror of
https://github.com/edgecase/ruby_koans.git
synced 2026-04-15 07:23:19 -04:00
Fix minor typo in method name: strings ARE unique objects
This commit is contained in:
committed by
Marc Peabody
parent
670101783b
commit
70eae5b306
@@ -183,7 +183,7 @@ EOS
|
|||||||
assert_equal __, words.join(" ")
|
assert_equal __, words.join(" ")
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_strings_are_not_unique_objects
|
def test_strings_are_unique_objects
|
||||||
a = "a string"
|
a = "a string"
|
||||||
b = "a string"
|
b = "a string"
|
||||||
|
|
||||||
|
|||||||
@@ -183,7 +183,7 @@ EOS
|
|||||||
assert_equal __("Now is the time"), words.join(" ")
|
assert_equal __("Now is the time"), words.join(" ")
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_strings_are_not_unique_objects
|
def test_strings_are_unique_objects
|
||||||
a = "a string"
|
a = "a string"
|
||||||
b = "a string"
|
b = "a string"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user