Skip to content

Commit

Permalink
Update testing packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
cincuranet committed Dec 10, 2024
1 parent e439935 commit efe9257
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 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
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public override Task ToString_boolean_property_non_nullable(bool async)
{
return AssertQuery(
async,
ss => ss.Set<Weapon>().Select(w => w.IsAutomatic.ToString()), elementAsserter: (lhs, rhs) => { Assert.True(lhs.Equals(rhs, System.StringComparison.OrdinalIgnoreCase)); });
ss => ss.Set<Weapon>().Select(w => w.IsAutomatic.ToString()));
}

[Theory]
Expand All @@ -45,7 +45,7 @@ public override Task ToString_boolean_property_nullable(bool async)
{
return AssertQuery(
async,
ss => ss.Set<LocustHorde>().Select(lh => lh.Eradicated.ToString()), elementAsserter: (lhs, rhs) => { Assert.True(lhs.Equals(rhs, System.StringComparison.OrdinalIgnoreCase)); });
ss => ss.Set<LocustHorde>().Select(lh => lh.Eradicated.ToString()));
}

[Theory(Skip = "Different implicit ordering on Firebird.")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public override Task ToString_boolean_property_non_nullable(bool async)
{
return AssertQuery(
async,
ss => ss.Set<Weapon>().Select(w => w.IsAutomatic.ToString()), elementAsserter: (lhs, rhs) => { Assert.True(lhs.Equals(rhs, System.StringComparison.OrdinalIgnoreCase)); });
ss => ss.Set<Weapon>().Select(w => w.IsAutomatic.ToString()));
}

[Theory]
Expand All @@ -45,7 +45,7 @@ public override Task ToString_boolean_property_nullable(bool async)
{
return AssertQuery(
async,
ss => ss.Set<LocustHorde>().Select(lh => lh.Eradicated.ToString()), elementAsserter: (lhs, rhs) => { Assert.True(lhs.Equals(rhs, System.StringComparison.OrdinalIgnoreCase)); });
ss => ss.Set<LocustHorde>().Select(lh => lh.Eradicated.ToString()));
}

[Theory(Skip = "Different implicit ordering on Firebird.")]
Expand Down

0 comments on commit efe9257

Please sign in to comment.