Use correct method for exception fill-in blank
authorMatt Yoho <mby@mattyoho.com>
Tue, 21 Sep 2010 19:32:43 +0000 (15:32 -0400)
committerMatt Yoho <mby@mattyoho.com>
Tue, 21 Sep 2010 20:05:02 +0000 (16:05 -0400)
koans/about_symbols.rb
src/about_symbols.rb

index 2aad194..e78c65a 100644 (file)
@@ -70,7 +70,7 @@ class AboutSymbols < EdgeCase::Koan
   # interesting string operations are available on symbols.
   def test_symbols_cannot_be_concatenated
     # Exceptions will be pondered further father down the path
-    assert_raise(__) do
+    assert_raise(___) do
       :cats + :dogs
     end
   end
index cf1b8b0..17dfa81 100644 (file)
@@ -70,7 +70,7 @@ class AboutSymbols < EdgeCase::Koan
   # interesting string operations are available on symbols.
   def test_symbols_cannot_be_concatenated
     # Exceptions will be pondered further father down the path
-    assert_raise(__(NoMethodError)) do
+    assert_raise(___(NoMethodError)) do
       :cats + :dogs
     end
   end