1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00

Fixed: Don't attempt to import from list with title only (#6477)

Closes #6474
This commit is contained in:
Mark McDowall
2024-02-06 20:02:26 -08:00
committed by GitHub
parent 895eccebc5
commit 34e74eecd7
2 changed files with 0 additions and 24 deletions
@@ -406,17 +406,6 @@ namespace NzbDrone.Core.Test.ImportListTests
.Verify(v => v.AddSeries(It.Is<List<Series>>(s => s.Count == 3), true), Times.Once());
}
[Test]
public void should_search_if_series_title_and_no_series_id()
{
_importListFetch.Series.ForEach(m => m.ImportListId = 1);
WithList(1, true);
Subject.Execute(_commandAll);
Mocker.GetMock<ISearchForNewSeries>()
.Verify(v => v.SearchForNewSeries(It.IsAny<string>()), Times.Once());
}
[Test]
public void should_not_search_if_series_title_and_series_id()
{