use /run/ahriman for sockett

This commit is contained in:
2024-06-22 14:27:44 +03:00
parent e92fbb7a1f
commit 2e759aba84
3 changed files with 5 additions and 5 deletions

View File

@ -81,7 +81,7 @@ def test_watch(lock: Lock, mocker: MockerFixture) -> None:
wait_mock = mocker.patch("ahriman.models.waiter.Waiter.wait")
lock._watch()
wait_mock.assert_called_once_with(lock.perform_lock, 1)
wait_mock.assert_called_once_with(pytest.helpers.anyvar(int), 1)
def test_watch_skip(lock: Lock, mocker: MockerFixture) -> None: