Skip to content

Commit

Permalink
feat: update test
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbozinoz committed Mar 18, 2024
1 parent 76639c6 commit 7cf41f3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ def test_add():
assert add(2, 3) == 5
assert add('space', 'ship') == 'spaceship'


# uncomment the following test in step 5
#def test_subtract():
# assert subtract(2, 3) == -1
def test_subtract():
assert subtract(2, 3) == -1


# uncomment the following test in step 11
# def test_convert_fahrenheit_to_celsius():
Expand Down

0 comments on commit 7cf41f3

Please sign in to comment.