aboutsummaryrefslogtreecommitdiffstats
path: root/solo-tool-project/test/fixtures.py
diff options
context:
space:
mode:
authorEddy Pedroni <epedroni@pm.me>2025-07-17 13:45:11 +0200
committerEddy Pedroni <epedroni@pm.me>2025-07-17 13:45:11 +0200
commit89dcddce5e215400150232befddebc83f45d64d8 (patch)
tree428007ef8f728b86f3284d32b9e1bcb8e920ca43 /solo-tool-project/test/fixtures.py
parent878ed5d699597dfa197636efe67f38000b67fe7e (diff)
Remove songpool dependency from SoloTool
Diffstat (limited to 'solo-tool-project/test/fixtures.py')
-rw-r--r--solo-tool-project/test/fixtures.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/solo-tool-project/test/fixtures.py b/solo-tool-project/test/fixtures.py
index e63d363..3306388 100644
--- a/solo-tool-project/test/fixtures.py
+++ b/solo-tool-project/test/fixtures.py
@@ -22,8 +22,8 @@ def sessionPath(tmp_path):
return path
@pytest.fixture
-def soloTool(mockPlayer, songPool):
- return SoloTool(songPool, player=mockPlayer)
+def soloTool(mockPlayer):
+ return SoloTool(player=mockPlayer)
@pytest.fixture
def testSongs(songPool):