Skip to content

Commit

Permalink
chore: add n=30 test
Browse files Browse the repository at this point in the history
  • Loading branch information
delanoflipse committed Mar 28, 2024
1 parent fac275e commit affbb57
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/test_fn.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ def fib(n):
else:
return fib(n-1) + fib(n-2)

@pytest.mark.energy(n=20)
def test_fib_n20():
fib(35)

@pytest.mark.energy(n=10)
def test_fib_n10():
fib(35)
Expand Down

0 comments on commit affbb57

Please sign in to comment.