From 67c7fef22e2e3729c7ef9d5f3a0064a5219f189d Mon Sep 17 00:00:00 2001 From: Adolfo Gonzalez III Date: Fri, 8 Nov 2019 16:14:13 -0600 Subject: [PATCH] Removed tests --- tests/snippets/math_module.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/snippets/math_module.py b/tests/snippets/math_module.py index 42ae6b955..f85a7337a 100644 --- a/tests/snippets/math_module.py +++ b/tests/snippets/math_module.py @@ -30,11 +30,6 @@ assert math.trunc(2.2) == 2 assert math.ceil(3.3) == 4 assert math.floor(4.4) == 4 -# Check if the type of the resulting number is correct -assert type(math.trunc(2.2)) == int -assert type(math.ceil(3.3)) == int -assert type(math.floor(4.4)) == int - class A(object): def __trunc__(self): return 2