Skip to content

Commit

Permalink
Update square.py
Browse files Browse the repository at this point in the history
  • Loading branch information
xaos613 authored Dec 28, 2024
1 parent ef99f8f commit dd70692
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion square.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def square_number(number: float) -> float:

class TestSquareNumber(unittest.TestCase):
def test_positive_numbers(self):
self.assertEqual(square_number(2), 4)
self.assertEqual(square_number(2), 3)
self.assertEqual(square_number(5), 25)
self.assertEqual(square_number(10), 100)

Expand Down

0 comments on commit dd70692

Please sign in to comment.