updated test imports
All checks were successful
Python unit tests / unittests (push) Successful in 4s

This commit is contained in:
Louis Heredero 2025-01-28 17:32:57 +01:00
parent 35f194f649
commit 0dcccd2b74
Signed by: HEL
GPG Key ID: 8D83DE470F8544E7
5 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
import unittest
from Ex1 import countKey
from src.Ex1 import countKey
class MyTestCase(unittest.TestCase):

View File

@ -1,6 +1,6 @@
import unittest
from Ex2 import findSafestPath
from src.Ex2 import findSafestPath
class MyTestCase(unittest.TestCase):

View File

@ -1,6 +1,6 @@
import unittest
from Ex3 import findTightlyLinkedConsoles
from src.Ex3 import findTightlyLinkedConsoles
class MyTestCase(unittest.TestCase):

View File

@ -1,6 +1,6 @@
import unittest
from Ex4 import computeNbrOfDifferentSequences
from src.Ex4 import computeNbrOfDifferentSequences
class MyTestCase(unittest.TestCase):

View File

@ -1,6 +1,6 @@
import unittest
from Ex5 import playMinitrisFastAndWell
from src.Ex5 import playMinitrisFastAndWell
class MyTestCase(unittest.TestCase):