mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
more linux fixes
This commit is contained in:
parent
ea195afc87
commit
23b2c9eef5
5 changed files with 14 additions and 14 deletions
|
@ -53,7 +53,7 @@ namespace NzbDrone.Core.Test.MediaFileTests
|
|||
|
||||
var episodeFile = Builder<EpisodeFile>.CreateNew()
|
||||
.With(f => f.Id = 0)
|
||||
.With(f => f.Path = path.CleanPath())
|
||||
.With(f => f.Path = path.CleanFilePath())
|
||||
.Build();
|
||||
|
||||
Subject.Insert(episodeFile);
|
||||
|
@ -62,7 +62,7 @@ namespace NzbDrone.Core.Test.MediaFileTests
|
|||
|
||||
//Resolve
|
||||
file.Should().NotBeNull();
|
||||
file.Path.Should().Be(path.CleanPath());
|
||||
file.Path.Should().Be(path.CleanFilePath());
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue