diff --git a/tests_operations.py b/tests_operations.py index 028cf96..08786f5 100644 --- a/tests_operations.py +++ b/tests_operations.py @@ -8,7 +8,8 @@ ) -def test_addition(): +def test_addition(a,b): + return a+b """ GIVEN: Two numbers WHEN: passed in to the function addition @@ -18,7 +19,8 @@ def test_addition(): pass -def test_subtraction(): +def test_subtraction(a,b): + return a-b """ GIVEN: Two numbers WHEN: passed in to the function subtraction