From eb0f842ba022d9f0581b332aa8ec431c58b7625c Mon Sep 17 00:00:00 2001 From: danielwilczak101 <44122838+danielwilczak101@users.noreply.github.com> Date: Sun, 20 Sep 2020 02:23:02 -0400 Subject: [PATCH] Delete test_helloworld.py --- test_helloworld.py | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 test_helloworld.py diff --git a/test_helloworld.py b/test_helloworld.py deleted file mode 100644 index 4597090..0000000 --- a/test_helloworld.py +++ /dev/null @@ -1,7 +0,0 @@ -from helloworld import say_hello - -def test_helloworld_no_params(): - assert say_hello() == "Hello World!" - -def test_helloworld_with_param(): - assert say_hello("Everyone") == "Hello, Everyone!"