mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
fixed property comparison order
This commit is contained in:
parent
3205f91db0
commit
79f9805c52
1 changed files with 4 additions and 0 deletions
|
@ -90,6 +90,10 @@ namespace NzbDrone.Core.Test.Datastore
|
||||||
|
|
||||||
loadedEpisodeFile.Should().NotBeNull();
|
loadedEpisodeFile.Should().NotBeNull();
|
||||||
loadedEpisodeFile.ShouldBeEquivalentTo(episodeFile,
|
loadedEpisodeFile.ShouldBeEquivalentTo(episodeFile,
|
||||||
|
options => options
|
||||||
|
.IncludingAllRuntimeProperties()
|
||||||
|
.Excluding(c => c.DateAdded)
|
||||||
|
.Excluding(c => c.Path));
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue