mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-25 15:22:42 +00:00
Fixed: Don't fail on frameworks 4.7 and up
Co-Authored-By: taloth <taloth@users.noreply.github.com>
This commit is contained in:
parent
f1fc45fa99
commit
edba53181f
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ public class DotNetPlatformInfoFixture : TestBase<DotNetPlatformInfo>
|
|||
public void should_get_framework_version()
|
||||
{
|
||||
Subject.Version.Major.Should().Be(4);
|
||||
Subject.Version.Minor.Should().BeOneOf(0, 5, 6);
|
||||
Subject.Version.Minor.Should().BeOneOf(0, 5, 6, 7, 8);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue