From 0dcccd2b74144f150018b3a9cf1aa3ad15f1f077 Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Tue, 28 Jan 2025 17:32:57 +0100 Subject: [PATCH] updated test imports --- tests/test_ex1.py | 2 +- tests/test_ex2.py | 2 +- tests/test_ex3.py | 2 +- tests/test_ex4.py | 2 +- tests/test_ex5.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/test_ex1.py b/tests/test_ex1.py index 697f3bf..36160e1 100644 --- a/tests/test_ex1.py +++ b/tests/test_ex1.py @@ -1,6 +1,6 @@ import unittest -from Ex1 import countKey +from src.Ex1 import countKey class MyTestCase(unittest.TestCase): diff --git a/tests/test_ex2.py b/tests/test_ex2.py index 54e6601..cfedff7 100644 --- a/tests/test_ex2.py +++ b/tests/test_ex2.py @@ -1,6 +1,6 @@ import unittest -from Ex2 import findSafestPath +from src.Ex2 import findSafestPath class MyTestCase(unittest.TestCase): diff --git a/tests/test_ex3.py b/tests/test_ex3.py index 2a68eed..9260707 100644 --- a/tests/test_ex3.py +++ b/tests/test_ex3.py @@ -1,6 +1,6 @@ import unittest -from Ex3 import findTightlyLinkedConsoles +from src.Ex3 import findTightlyLinkedConsoles class MyTestCase(unittest.TestCase): diff --git a/tests/test_ex4.py b/tests/test_ex4.py index 9de1abc..2aeaea2 100644 --- a/tests/test_ex4.py +++ b/tests/test_ex4.py @@ -1,6 +1,6 @@ import unittest -from Ex4 import computeNbrOfDifferentSequences +from src.Ex4 import computeNbrOfDifferentSequences class MyTestCase(unittest.TestCase): diff --git a/tests/test_ex5.py b/tests/test_ex5.py index 11f588c..2cb1857 100644 --- a/tests/test_ex5.py +++ b/tests/test_ex5.py @@ -1,6 +1,6 @@ import unittest -from Ex5 import playMinitrisFastAndWell +from src.Ex5 import playMinitrisFastAndWell class MyTestCase(unittest.TestCase):