Skip to content

Commit

Permalink
test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
KKGanguly committed Aug 30, 2024
1 parent 0dd7806 commit 67b4908
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion calculator_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
@pytest.mark.parametrize("a,b,output", division_testdata)
def test_division_numeric(a,b,output):
assert divide(a,b) == output

"""
@pytest.mark.parametrize("arr,output", largest_testdata)
def test_largest_numeric(arr,output):
assert largest(arr) == output
"""

0 comments on commit 67b4908

Please sign in to comment.