From: Jim Weirich Date: Sun, 4 Dec 2011 07:39:29 +0000 (-0500) Subject: Added __ to assert with no __ blanks. X-Git-Url: https://git.eng.unimelb.edu.au/public?p=ruby_koans.git;a=commitdiff_plain;h=d92f3234c7710dde3ce0b410d7234e18497729cf Added __ to assert with no __ blanks. --- diff --git a/src/about_hashes.rb b/src/about_hashes.rb index 27a6fd1..2382d68 100644 --- a/src/about_hashes.rb +++ b/src/about_hashes.rb @@ -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