mirror of
https://github.com/Radarr/Radarr
synced 2025-02-21 22:07:21 +00:00
Fixed broken test from not using Name
This commit is contained in:
parent
8cac7ed1cd
commit
954ac925d0
1 changed files with 2 additions and 2 deletions
|
@ -71,8 +71,8 @@ public void should_be_able_to_get_schema_for_all_notifications()
|
|||
notifications.Should().NotBeEmpty();
|
||||
notifications.Should().NotContain(c => c.Settings == null);
|
||||
notifications.Should().NotContain(c => c.Instance == null);
|
||||
notifications.Should().NotContain(c => c.Name == null);
|
||||
notifications.Select(c => c.Name).Should().OnlyHaveUniqueItems();
|
||||
notifications.Should().NotContain(c => c.ImplementationName == null);
|
||||
notifications.Select(c => c.ImplementationName).Should().OnlyHaveUniqueItems();
|
||||
notifications.Select(c => c.Instance).Should().OnlyHaveUniqueItems();
|
||||
notifications.Select(c => c.Id).Should().OnlyHaveUniqueItems();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue