mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
fixed property comparison order
This commit is contained in:
parent
3205f91db0
commit
79f9805c52
@ -90,6 +90,10 @@ public void one_to_one()
|
|||||||
|
|
||||||
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…
Reference in New Issue
Block a user