1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 03:52:33 +02:00

Fixup test failures

This commit is contained in:
Qstick 2020-02-29 23:42:01 -05:00
parent 8babe7205b
commit fba1a5acb9

View File

@ -32,16 +32,12 @@ public void should_return_ok(string version)
[TestCase("4.7.1")]
public void should_return_notice(string version)
{
GivenOutput(version);
if (PlatformInfo.IsDotNet)
{
GivenOutput(version);
Subject.Check().ShouldBeNotice();
}
public void should_return_warning(string version)
{
GivenOutput(version);
Subject.Check().ShouldBeWarning();
Subject.Check().ShouldBeNotice();
}
}
[TestCase("4.5")]
@ -49,9 +45,12 @@ public void should_return_warning(string version)
[TestCase("4.6.1")]
public void should_return_error(string version)
{
GivenOutput(version);
if (PlatformInfo.IsDotNet)
{
GivenOutput(version);
Subject.Check().ShouldBeError();
Subject.Check().ShouldBeError();
}
}
[Test]