1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-03-05 13:20:20 -05:00

Fix tests for v5

This commit is contained in:
Mark McDowall
2025-01-31 16:58:55 -08:00
parent 0f90544a35
commit 539f55deae
2 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ namespace NzbDrone.Common.Test.EnsureTest
public class PathExtensionFixture : TestBase
{
[TestCase(@"p:\TV Shows\file with, comma.mkv")]
[TestCase(@"\\serer\share\file with, comma.mkv")]
[TestCase(@"\\server\share\file with, comma.mkv")]
public void EnsureWindowsPath(string path)
{
WindowsOnly();

View File

@@ -10,13 +10,13 @@ namespace NzbDrone.Common.Test.EnvironmentInfo
[Test]
public void should_return_version()
{
BuildInfo.Version.Major.Should().BeOneOf(4, 10);
BuildInfo.Version.Major.Should().BeOneOf(5, 10);
}
[Test]
public void should_get_branch()
{
BuildInfo.Branch.Should().NotBe("unknow");
BuildInfo.Branch.Should().NotBe("unknown");
BuildInfo.Branch.Should().NotBeNullOrWhiteSpace();
}
}