Refactor import paths to use the 'src' directory structure and remove unused workflow inputs

This commit is contained in:
2026-03-18 17:48:54 +02:00
parent c339443fd5
commit 9e5540b89b
11 changed files with 12 additions and 17 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
import logging
from tests.dummy_config import DummyConfig
from ytplaylist.manager import PlaylistManager
from src.manager import PlaylistManager
def test_manager_warns_and_sleeps(monkeypatch, caplog):
@@ -11,7 +11,7 @@ def test_manager_warns_and_sleeps(monkeypatch, caplog):
slept["called"] = True
# monkeypatch the sleep used inside the manager module
monkeypatch.setattr("ytplaylist.manager.time.sleep", fake_sleep)
monkeypatch.setattr("src.manager.time.sleep", fake_sleep)
caplog.set_level(logging.WARNING)
cfg = DummyConfig()