From 6fbf0f301d4ed347d9310da94256f6c277816b6c Mon Sep 17 00:00:00 2001 From: Teresa Datta Date: Tue, 27 Oct 2020 11:03:57 -0400 Subject: [PATCH] add calls to test functions after method defn --- test_roots.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/test_roots.py b/test_roots.py index d3d074d..8faec5e 100644 --- a/test_roots.py +++ b/test_roots.py @@ -21,4 +21,11 @@ def test_linearroots_types(): def test_linearroots_zerocoeff(): with pytest.raises(ValueError): - roots.linear_roots(a=0.0) \ No newline at end of file + roots.linear_roots(a=0.0) + +test_quadroots_result() +test_quadroots_types() +test_quadroots_zerocoeff() +test_linearoots_result() +test_linearroots_types() +test_linearroots_zerocoeff() \ No newline at end of file