summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tests/test.py7
-rw-r--r--src/tests/test_utils.py1
2 files changed, 0 insertions, 8 deletions
diff --git a/src/tests/test.py b/src/tests/test.py
deleted file mode 100644
index 46803bd..0000000
--- a/src/tests/test.py
+++ /dev/null
@@ -1,7 +0,0 @@
-from typing import List
-
-import os
-
-def sum_even_numbers(numbers: List[int]) -> int:
- """Given a list of integers, return the sum of all even numbers in the list."""
- return sum(num for num in numbers if num % 2 == 0) \ No newline at end of file
diff --git a/src/tests/test_utils.py b/src/tests/test_utils.py
index 8ae63ae..b7b7f22 100644
--- a/src/tests/test_utils.py
+++ b/src/tests/test_utils.py
@@ -15,7 +15,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from unittest import TestCase
-import os
class TestVyOSUtils(TestCase):
def test_key_mangling(self):
from vyos.utils.dict import mangle_dict_keys