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

Remove validation test for From Addresses

This commit is contained in:
Qstick
2021-01-06 23:50:34 -05:00
parent 74c89e1d44
commit 7410a2db5d

View File

@@ -61,16 +61,6 @@ namespace NzbDrone.Core.Test.NotificationTests.EmailTests
_validator.Validate(_emailSettings).IsValid.Should().BeFalse();
}
[TestCase("radarr")]
[TestCase("radarr@radarr")]
[TestCase("radarr.video")]
public void should_not_be_valid_if_from_is_invalid(string email)
{
_emailSettings.From = email;
_validator.Validate(_emailSettings).IsValid.Should().BeFalse();
}
[TestCase("radarr")]
[TestCase("radarr@radarr")]
[TestCase("radarr.video")]