skip update process if no update supplied

This commit is contained in:
2021-08-10 23:25:12 +03:00
parent c2685f4746
commit 581401d60f
2 changed files with 4 additions and 2 deletions

View File

@ -299,5 +299,5 @@ def test_update(application: Application, package_ahriman: Package, mocker: Mock
application.update([package_ahriman])
build_mock.assert_called_once()
update_mock.assert_has_calls([mock.call([]), mock.call(paths)])
finalize_mock.assert_has_calls([mock.call([]), mock.call([package_ahriman])])
update_mock.assert_called_with(paths)
finalize_mock.assert_called_with([package_ahriman])