Skip to content
Snippets Groups Projects
Commit 83dc8fc3 authored by jakj's avatar jakj
Browse files

some commit message

parent e8ebd476
Branches
No related tags found
No related merge requests found
def add(a, b):
return a + b
def test_add():
assert add(2, 3) == 5
assert add('space', 'ship') == 'spaceship'
def subtract(a, b):
return a + b # <--- fix this in step 8
# uncomment the following test in step 5
#def test_subtract():
# assert subtract(2, 3) == -1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment