1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-25 22:46:31 -04:00

Fixed: Removed .Net update notice on Windows LTSB 2015

This commit is contained in:
Taloth Saldono
2019-08-30 20:39:34 +02:00
parent 6d232778e2
commit 354ddcfee5
2 changed files with 21 additions and 1 deletions
@@ -53,5 +53,17 @@ namespace NzbDrone.Core.Test.HealthCheck.Checks
Subject.Check().ShouldBeError();
}
[Test]
public void should_return_ok_for_net462_on_Win1511()
{
Mocker.GetMock<IOsInfo>()
.SetupGet(v => v.Version)
.Returns("10.0.14392");
GivenOutput("4.6.2");
Subject.Check().ShouldBeOk();
}
}
}