From 4bf9cc761bce25bc2825a35126967e57e2b780e4 Mon Sep 17 00:00:00 2001 From: arwaabdelkhalik Date: Sun, 12 Jan 2025 09:23:44 +0300 Subject: [PATCH] another try --- solutions/tests/test_capitalize_string.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/solutions/tests/test_capitalize_string.py b/solutions/tests/test_capitalize_string.py index 74580bf8d..ad9fe888f 100644 --- a/solutions/tests/test_capitalize_string.py +++ b/solutions/tests/test_capitalize_string.py @@ -49,3 +49,7 @@ def test_non_string_input(self): capitalize_string(123) with self.assertRaises(TypeError): capitalize_string(["hello", "world"]) + + +if __name__ == "__main__": + unittest.main()