From c07c9d40de57d1607e414d81d77abbe9354c7714 Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Mon, 20 Jan 2020 20:31:48 +0100 Subject: [PATCH] Moved test Signed-off-by: Dimitris Zlatanidis --- tests/test_utils.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/test_utils.py b/tests/test_utils.py index fce14d11..17aa5352 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -1,10 +1,6 @@ from slpkg.utils import Utils -def test_units(): - assert ["Kb", "Kb"], ["100", "100"] == units(['100', ['100']]) - - def test_dimensional_list(): lists = [[1, 2, 3, 4, 5]] utils = Utils() @@ -14,4 +10,4 @@ def test_dimensional_list(): def test_remove_dbs(): lists = [1, 2, 3, 3, 4, 5, 2, 1] utils = Utils() - assert [1, 2, 3, 4, 5] == utils.remove_dbs(lists) \ No newline at end of file + assert [1, 2, 3, 4, 5] == utils.remove_dbs(lists)