From f91640efbb8b795fe637de07924c7426c86a0b56 Mon Sep 17 00:00:00 2001 From: Lorena Mesa Date: Wed, 17 Jul 2024 02:55:50 +0000 Subject: [PATCH] Fix typos in sample cases --- test/sample_cases_test.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/sample_cases_test.py b/test/sample_cases_test.py index 465ea89..d490cff 100644 --- a/test/sample_cases_test.py +++ b/test/sample_cases_test.py @@ -28,7 +28,8 @@ def test_fails_to_create_identicon_with_input_text_missing(self): error_received = subprocess.check_output(f'python3 {PROJECT_ROOT}/main.py', shell=True, stderr=subprocess.STDOUT).strip() self.assertIn(context.exception.message, "main.py: error: the following arguments are required: -s/--string") - def generates_ + def test_creates_identicon_when_input_text_provided(self): + pass # hash_str =convert_string_to_sha_hash("931D387731bBbC988B31220") @@ -36,5 +37,5 @@ def generates_ # grid = build_grid(hash_str) # draw_image(grid, hash_str) -if __name__ == '__maipython -m unittestn__': +if __name__ == '__maipython -m unittest__': unittest.main() \ No newline at end of file