From af8c7b959ae66ee529a18ef655f30bff022a5a80 Mon Sep 17 00:00:00 2001 From: Viljami Ilola <+@hix.fi> Date: Sat, 27 Apr 2024 17:13:12 +0300 Subject: tests for settings - v0.4b1 --- tests/test_highscores.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_highscores.py') 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() -- cgit v1.2.3