1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

New: Renamed Blacklist to Blocklist

This commit is contained in:
Robin Dadswell
2021-08-19 20:13:14 +01:00
committed by Qstick
parent 8024f4658c
commit 13224f03cc
52 changed files with 614 additions and 589 deletions
@@ -47,25 +47,25 @@ namespace NzbDrone.Core.Test.MetadataSource
}
[Test]
public void should_prefer_blacklist_over_the_blacklist_when_searching_for_blacklist()
public void should_prefer_blocklist_over_the_blocklist_when_searching_for_blocklist()
{
WithSeries("The Blacklist");
WithSeries("Blacklist");
WithSeries("The Blocklist");
WithSeries("Blocklist");
_series.Sort(new SearchMovieComparer("blacklist"));
_series.Sort(new SearchMovieComparer("blocklist"));
_series.First().Title.Should().Be("Blacklist");
_series.First().Title.Should().Be("Blocklist");
}
[Test]
public void should_prefer_the_blacklist_over_blacklist_when_searching_for_the_blacklist()
public void should_prefer_the_blocklist_over_blocklist_when_searching_for_the_blocklist()
{
WithSeries("Blacklist");
WithSeries("The Blacklist");
WithSeries("Blocklist");
WithSeries("The Blocklist");
_series.Sort(new SearchMovieComparer("the blacklist"));
_series.Sort(new SearchMovieComparer("the blocklist"));
_series.First().Title.Should().Be("The Blacklist");
_series.First().Title.Should().Be("The Blocklist");
}
}
}