Added __ to assert with no __ blanks.

This commit is contained in:
Jim Weirich
2011-12-04 02:39:29 -05:00
parent 007eeff1d8
commit d92f3234c7

View 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