1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-08-18 16:29:41 +02: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 @@ public void should_not_be_valid_if_from_is_empty()
_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")]