From 71d6675aa33cd1c0e745ebcd623bfadaa5cd1133 Mon Sep 17 00:00:00 2001 From: Rahul Mishra Date: Tue, 1 Jan 2019 15:44:28 +0530 Subject: [PATCH] Modified Test Catmath --- tests/test_catmath.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_catmath.py b/tests/test_catmath.py index ced6358..eb59735 100644 --- a/tests/test_catmath.py +++ b/tests/test_catmath.py @@ -2,15 +2,15 @@ def test__cat_years_to_hooman_years__middle_age__succeeds(): - assert True + assert catmath.cat_years_to_hooman_years(10) == 50 def test__cat_years_to_hooman_years__less_than_one_year__succeeds(): - assert True + assert catmath.cat_years_to_hooman_years(0.2) == 1 def test__cat_years_to_hooman_years__0__returns_0(): - assert True + assert catmath.cat_years_to_hooman_years(0) == 0 # BONUS MATERIAL FOR STEP 2