summaryrefslogtreecommitdiff
path: root/tests/test_enemies.py
diff options
context:
space:
mode:
authorViljami Ilola <+@hix.fi>2024-04-20 23:34:13 +0300
committerViljami Ilola <+@hix.fi>2024-04-20 23:34:13 +0300
commit9ae60c3e487fbceb54cee462d4f8f0b0a3682ba1 (patch)
treedddebe8d40f91e881ffc07be283a7da5f2152ff2 /tests/test_enemies.py
parent32c09ea3ecb77601c08e392c178ee3732bd26f4d (diff)
fix tests path
Diffstat (limited to 'tests/test_enemies.py')
-rw-r--r--tests/test_enemies.py12
1 files changed, 4 insertions, 8 deletions
diff --git a/tests/test_enemies.py b/tests/test_enemies.py
index 994ab77..c77faea 100644
--- a/tests/test_enemies.py
+++ b/tests/test_enemies.py
@@ -11,10 +11,8 @@ from sliceitoff.text import Fonts
class TestEnemyBall(unittest.TestCase):
def setUp(self):
- Fonts.load_fonts(os.path.join(
- Path(__file__).parent.parent.resolve(),
- "src",
- "sliceitoff"))
+ Fonts.load_fonts( Path(__file__).parent.parent.resolve()
+ .joinpath('src').joinpath('sliceitoff').joinpath('assets'))
def test_can_create(self):
enemy = EnemyBall()
@@ -23,10 +21,8 @@ class TestEnemyBall(unittest.TestCase):
class TestEnemies(unittest.TestCase):
def setUp(self):
Scaling.update_scaling((640,400))
- Fonts.load_fonts(os.path.join(
- Path(__file__).parent.parent.resolve(),
- "src",
- "sliceitoff"))
+ Fonts.load_fonts( Path(__file__).parent.parent.resolve()
+ .joinpath('src').joinpath('sliceitoff').joinpath('assets'))
def test_can_create(self):
enemies = Enemies()