mirror of
https://github.com/Radarr/Radarr
synced 2025-02-24 07:10:57 +00:00
Fixup test failures
This commit is contained in:
parent
8babe7205b
commit
fba1a5acb9
1 changed files with 10 additions and 11 deletions
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue