From de9e3905ac5bb478d1c78169f28ee929d1b9f308 Mon Sep 17 00:00:00 2001 From: Bentozox Date: Mon, 10 Oct 2022 11:52:19 +0200 Subject: [PATCH] test3 that should success --- tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests.py b/tests.py index 730b5f0..9ac0569 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 NOOOO")) + self.assertTrue(is_hello_world("Hello world")) if __name__ == '__main__':