Skip to content

Commit

Permalink
fix: failing tests on .NET framework (#320)
Browse files Browse the repository at this point in the history
The tests
`Create_ShouldRefreshExistsCacheForCurrentItem_ExceptOnNetFramework`
introduced in #313 fail on .NET Framework.

![image](https://github.com/Testably/Testably.Abstractions/assets/3438234/c972da45-9232-40f6-b5e6-a7ae21cce75c)

Co-authored-by: Valentin Breuß <v.breuss@tig.at>
  • Loading branch information
vbreuss and vbtig authored Jun 25, 2023
1 parent c858a91 commit 03598b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public void Create_ShouldRefreshExistsCacheForCurrentItem_ExceptOnNetFramework(s
{
sut1.Exists.Should().BeFalse();
sut2.Exists.Should().BeFalse();
sut3.Exists.Should().BeFalse();
sut3.Exists.Should().BeTrue();
}
else
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void Create_ShouldRefreshExistsCacheForCurrentItem_ExceptOnNetFramework(s
{
sut1.Exists.Should().BeFalse();
sut2.Exists.Should().BeFalse();
sut3.Exists.Should().BeFalse();
sut3.Exists.Should().BeTrue();
}
else
{
Expand Down

0 comments on commit 03598b6

Please sign in to comment.