Skip to content

Commit

Permalink
Fix typos in sample cases
Browse files Browse the repository at this point in the history
  • Loading branch information
Lorena Mesa committed Jul 17, 2024
1 parent eacb262 commit f91640e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/sample_cases_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,14 @@ 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")
# hash_str = convert_string_to_sha_hash("[email protected]")
# grid = build_grid(hash_str)
# draw_image(grid, hash_str)

if __name__ == '__maipython -m unittestn__':
if __name__ == '__maipython -m unittest__':
unittest.main()

0 comments on commit f91640e

Please sign in to comment.