Skip to content

Commit c6a427e

Browse files
committed
Co-authored-by: renemadsen <76994+renemadsen@users.noreply.github.com>
1 parent 052f877 commit c6a427e

1 file changed

Lines changed: 4 additions & 10 deletions

File tree

test/EFCore.MySql.FunctionalTests/Query/AdHocComplexTypeQueryMySqlTest.cs

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,16 @@
44
using Microsoft.EntityFrameworkCore.Query;
55
using Microsoft.EntityFrameworkCore.TestUtilities;
66
using Pomelo.EntityFrameworkCore.MySql.FunctionalTests.TestUtilities;
7-
using Xunit.Abstractions;
87

98
namespace Pomelo.EntityFrameworkCore.MySql.FunctionalTests.Query;
109

1110
public class AdHocComplexTypeQueryMySqlTest : AdHocComplexTypeQueryRelationalTestBase
1211
{
13-
protected override ITestStoreFactory TestStoreFactory
14-
=> MySqlTestStoreFactory.Instance;
15-
16-
public AdHocComplexTypeQueryMySqlTest(ITestOutputHelper testOutputHelper)
17-
: base()
12+
public AdHocComplexTypeQueryMySqlTest(NonSharedFixture fixture)
13+
: base(fixture)
1814
{
19-
Fixture.TestSqlLoggerFactory.Clear();
20-
Fixture.TestSqlLoggerFactory.SetTestOutputHelper(testOutputHelper);
2115
}
2216

23-
protected void AssertSql(params string[] expected)
24-
=> Fixture.TestSqlLoggerFactory.AssertBaseline(expected);
17+
protected override ITestStoreFactory TestStoreFactory
18+
=> MySqlTestStoreFactory.Instance;
2519
}

0 commit comments

Comments
 (0)