Skip to content

Commit

Permalink
Remove workaround for dotnet/efcore#24806.
Browse files Browse the repository at this point in the history
  • Loading branch information
lauxjpn committed Nov 9, 2021
1 parent cfeed28 commit 4ba01a0
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions test/EFCore.MySql.FunctionalTests/Query/FromSqlQueryMySqlTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,5 @@ protected override DbParameter CreateDbParameter(string name, object value)
ParameterName = name,
Value = value
};

[ConditionalTheory(Skip = "https://github.com/dotnet/efcore/pull/24806")]
public override Task FromSqlRaw_in_subquery_with_dbParameter(bool async)
=> base.FromSqlRaw_in_subquery_with_dbParameter(async);

[ConditionalTheory(Skip = "https://github.com/dotnet/efcore/pull/24806")]
public override Task FromSqlRaw_in_subquery_with_positional_dbParameter_with_name(bool async)
=> base.FromSqlRaw_in_subquery_with_positional_dbParameter_with_name(async);

[ConditionalTheory(Skip = "https://github.com/dotnet/efcore/pull/24806")]
public override Task FromSqlRaw_in_subquery_with_positional_dbParameter_without_name(bool async)
=> base.FromSqlRaw_in_subquery_with_positional_dbParameter_without_name(async);

[ConditionalTheory(Skip = "https://github.com/dotnet/efcore/pull/24806")]
public override Task FromSqlRaw_with_dbParameter_mixed_in_subquery(bool async)
=> base.FromSqlRaw_with_dbParameter_mixed_in_subquery(async);
}
}

0 comments on commit 4ba01a0

Please sign in to comment.