From 2c10be0b0465c30b8f6035f0472dd4b387ffc2c4 Mon Sep 17 00:00:00 2001 From: Nikoleta Glynatsi Date: Wed, 4 Sep 2024 12:34:07 +0100 Subject: [PATCH] remove artifacts from merge --- tests/test_inspect.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/test_inspect.py b/tests/test_inspect.py index 93754bd..18b5fb8 100644 --- a/tests/test_inspect.py +++ b/tests/test_inspect.py @@ -31,10 +31,3 @@ def test_most_common_element(): ll = [1, 2, 3, 4, 1, 1, 2, 3, 3, 3, 3, 3] res = lwi.most_common_element(ll) assert res == 3 - - - - -#@pytest.mark.skip(reason="Test is not implemented yet") -#def test_most_common_element(): -# raise AssertionError("This test is missing.")