Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
cincuranet committed Dec 10, 2024
1 parent 19f9609 commit 11eb71e
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,9 @@ public override Task Entity_mapped_to_view_on_right_side_of_join(bool async)

[Theory]
[MemberData(nameof(IsAsyncData))]
public override async Task KeylessEntity_with_nav_defining_query(bool async)
public override Task KeylessEntity_with_nav_defining_query(bool async)
{
Assert.Equal(
"0",
(await Assert.ThrowsAsync<EqualException>(
() => base.KeylessEntity_with_nav_defining_query(async))).Actual);
return Assert.ThrowsAsync<EqualException>(() => base.KeylessEntity_with_nav_defining_query(async));
}

[Theory]
Expand Down

0 comments on commit 11eb71e

Please sign in to comment.