From d0b8b5fe8665657a86e41d55f733f24dd99efe2f Mon Sep 17 00:00:00 2001 From: jaysonfrancis Date: Wed, 2 Mar 2016 23:32:56 -0800 Subject: [PATCH] Fixed typo for func() calls --- .../reverse_words/reverse_words_challenge.ipynb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/staging/arrays_strings/reverse_words/reverse_words_challenge.ipynb b/staging/arrays_strings/reverse_words/reverse_words_challenge.ipynb index c51736b..b84ca15 100644 --- a/staging/arrays_strings/reverse_words/reverse_words_challenge.ipynb +++ b/staging/arrays_strings/reverse_words/reverse_words_challenge.ipynb @@ -108,10 +108,10 @@ "\n", "class UnitTest (object):\n", " def testReverseWords(self):\n", - " assert_equal(func('the sun is hot'), 'eht nus si toh')\n", - " assert_equal(func(''), None)\n", - " assert_equal(func('123 456 789'), '321 654 987')\n", - " assert_equal(func('magic'), 'cigam')\n", + " assert_equal(reverse_words('the sun is hot'), 'eht nus si toh')\n", + " assert_equal(reverse_words(''), None)\n", + " assert_equal(reverse_words('123 456 789'), '321 654 987')\n", + " assert_equal(reverse_words('magic'), 'cigam')\n", " print('Success: reverse_words')\n", " \n", "def main():\n", @@ -147,7 +147,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", - "version": "2.7.6" + "version": "2.7.10" } }, "nbformat": 4,