Skip to content

Commit

Permalink
add calls to test functions after method defn
Browse files Browse the repository at this point in the history
  • Loading branch information
teresadatta committed Oct 27, 2020
1 parent 3e52a32 commit 6fbf0f3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion test_roots.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,11 @@ def test_linearroots_types():

def test_linearroots_zerocoeff():
with pytest.raises(ValueError):
roots.linear_roots(a=0.0)
roots.linear_roots(a=0.0)

test_quadroots_result()
test_quadroots_types()
test_quadroots_zerocoeff()
test_linearoots_result()
test_linearroots_types()
test_linearroots_zerocoeff()

0 comments on commit 6fbf0f3

Please sign in to comment.