diff options
Diffstat (limited to 'solo-tool-project/test/fixtures.py')
-rw-r--r-- | solo-tool-project/test/fixtures.py | 4 |
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): |