summaryrefslogtreecommitdiff
path: root/tests/test_highscores.py
diff options
context:
space:
mode:
authorViljami Ilola <+@hix.fi>2024-04-27 17:13:12 +0300
committerViljami Ilola <+@hix.fi>2024-04-27 17:13:12 +0300
commitaf8c7b959ae66ee529a18ef655f30bff022a5a80 (patch)
tree809b752647453229278c88b4aafd68778726180e /tests/test_highscores.py
parent9f8247dc4da89219b6eede08d58d96964391a077 (diff)
tests for settings - v0.4b1
Diffstat (limited to 'tests/test_highscores.py')
-rw-r--r--tests/test_highscores.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_highscores.py b/tests/test_highscores.py
index 366d60f..58d7121 100644
--- a/tests/test_highscores.py
+++ b/tests/test_highscores.py
@@ -3,7 +3,7 @@ from pathlib import Path
import unittest
import pygame
-os.environ["TEST_CONFIG_FILE"] = "/tmp/sliceitoff-hiscores-test"
+os.environ["TEST_CONFIG_FILE"] = "/tmp/sliceitoff-settings-test"
from sliceitoff.settings import settings
from sliceitoff.hiscores import hi_scores
@@ -11,7 +11,7 @@ from sliceitoff.hiscores import hi_scores
class TestHiScores(unittest.TestCase):
def setUp(self):
- self.filename = Path("/tmp/sliceitoff-hiscores-test")
+ self.filename = Path("/tmp/sliceitoff-settings-test")
if self.filename.is_file():
self.filename.unlink()