Added __ to assert with no __ blanks.
authorJim Weirich <jim.weirich@gmail.com>
Sun, 4 Dec 2011 07:39:29 +0000 (02:39 -0500)
committerJim Weirich <jim.weirich@gmail.com>
Sun, 4 Dec 2011 07:39:29 +0000 (02:39 -0500)
src/about_hashes.rb

index 27a6fd1..2382d68 100644 (file)
@@ -22,7 +22,7 @@ class AboutHashes < EdgeCase::Koan
 
   def test_accessing_hashes_with_fetch
     hash = { :one => "uno" }
-    assert_equal "uno", hash.fetch(:one)
+    assert_equal __("uno"), hash.fetch(:one)
     assert_raise(___(IndexError, KeyError)) do
       hash.fetch(:doesnt_exist)
     end