From 954ac925d04f894254a57b8b997761ad8c1a3556 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 13 Jun 2013 00:12:40 -0700 Subject: [PATCH] Fixed broken test from not using Name --- .../NotificationTests/NotificationServiceFixture.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NzbDrone.Core.Test/NotificationTests/NotificationServiceFixture.cs b/NzbDrone.Core.Test/NotificationTests/NotificationServiceFixture.cs index 2c0d86add..abb0c3165 100644 --- a/NzbDrone.Core.Test/NotificationTests/NotificationServiceFixture.cs +++ b/NzbDrone.Core.Test/NotificationTests/NotificationServiceFixture.cs @@ -71,8 +71,8 @@ namespace NzbDrone.Core.Test.NotificationTests 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(); }