From 35ce6b4d8ea6d81e20db9700214ac7bf3bdd30d0 Mon Sep 17 00:00:00 2001 From: Unknown Date: Wed, 24 Jun 2020 15:25:58 -0400 Subject: [PATCH] Test timeit() Increase coverage --- tests/test_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_utils.py b/tests/test_utils.py index 3fddc92..36c855d 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -1,6 +1,6 @@ import pytest -from translater import utils +from translater import utils, timeit def test_rotate(config): @@ -11,7 +11,7 @@ def test_rotate(config): assert (l2 == [2, 3, 1]) - +@timeit def test_lcm(config): # This function takes two integers and returns the L.C.M. x = 10