diff --git a/main.py b/main.py index 0641435..d50f7e1 100644 --- a/main.py +++ b/main.py @@ -7,8 +7,3 @@ def is_hello_world(text : str): return text is not None and text.strip().lower() == "hello world" - - - -print(is_hello_world("ok")) -print(is_hello_world("Hello World")) \ No newline at end of file diff --git a/tests.py b/tests.py index 9ac0569..730b5f0 100644 --- a/tests.py +++ b/tests.py @@ -6,7 +6,7 @@ from main import is_hello_world class TestProject(unittest.TestCase): def test_when_text_is_hello_world_with_maj_then_work(self): - self.assertTrue(is_hello_world("Hello world")) + self.assertTrue(is_hello_world("Hello world NOOOO")) if __name__ == '__main__':