Skip to content

Commit

Permalink
Fix test Where_string_substring
Browse files Browse the repository at this point in the history
  • Loading branch information
Marusyk committed Feb 26, 2021
1 parent a25ed13 commit 1da7f89
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1016,15 +1016,14 @@ FROM root c
WHERE (c[""Discriminator""] = ""Customer"")");
}

[ConditionalTheory(Skip = "Issue #17246")]
public override async Task Where_string_substring(bool async)
{
await base.Where_string_substring(async);

AssertSql(
@"SELECT c
FROM root c
WHERE (c[""Discriminator""] = ""Customer"")");
WHERE ((c[""Discriminator""] = ""Customer"") AND (SUBSTRING(c[""City""], 1, 2) = ""ea""))");
}

[ConditionalTheory(Skip = "Issue #17246")]
Expand Down

0 comments on commit 1da7f89

Please sign in to comment.