From eed70c3e879640c370fa93f8a9269df7b1d37dc9 Mon Sep 17 00:00:00 2001 From: tomhutest <89860997+tomhutest@users.noreply.github.com> Date: Mon, 20 Sep 2021 13:38:48 -0400 Subject: [PATCH 1/2] Update tests --- tests.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests.py b/tests.py index 92aa2034..f44040c7 100644 --- a/tests.py +++ b/tests.py @@ -4,8 +4,11 @@ class TestMethods(unittest.TestCase): - def test_add(self): + def test_smile(self): self.assertEqual(awesome.smile(), ":)") + + def test_frown(self): + self.assertEqual(awesome.frown(), ":(") if __name__ == '__main__': From 9503a1327a4cf52daea549cf760e8a1577d68df0 Mon Sep 17 00:00:00 2001 From: tomhutest <89860997+tomhutest@users.noreply.github.com> Date: Mon, 20 Sep 2021 13:46:08 -0400 Subject: [PATCH 2/2] Update tests.py --- tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests.py b/tests.py index f44040c7..6c257a8b 100644 --- a/tests.py +++ b/tests.py @@ -7,7 +7,7 @@ class TestMethods(unittest.TestCase): def test_smile(self): self.assertEqual(awesome.smile(), ":)") - def test_frown(self): + def test_frowny(self): self.assertEqual(awesome.frown(), ":(")