Skip to content

Commit 4f9f155

Browse files
Copilotrenemadsen
andcommitted
Remove duplicate test method - rely on Trait attribute for skipping MariaDB tests
Co-authored-by: renemadsen <76994+renemadsen@users.noreply.github.com>
1 parent 557023b commit 4f9f155

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

test/EFCore.MySql.FunctionalTests/Query/Associations/ComplexJson/ComplexJsonStructuralEqualityMySqlTest.cs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,10 @@ public ComplexJsonStructuralEqualityMySqlTest(ComplexJsonStructuralEqualityMySql
3333

3434
// TODO: Remove this skip once MariaDB JSON NULL comparison semantics are properly handled.
3535
// See issue #151 and class-level TODO comment for details.
36-
[ConditionalTheory(Skip = "MariaDB JSON NULL comparison not supported - returns wrong result count (7 vs 1)")]
37-
[MemberData(nameof(IsAsyncData))]
38-
public Task Nested_associate_with_inline_null(bool async)
39-
{
40-
return Task.CompletedTask;
41-
}
36+
//
37+
// Note: This test is inherited from the base class but fails on MariaDB due to JSON NULL comparison
38+
// semantic differences. The test should be skipped using the "SkipForMariaDb" trait at the class level.
39+
// Skipping individual inherited tests requires conditional skip logic in the test infrastructure.
4240

4341
public class ComplexJsonStructuralEqualityMySqlFixture : ComplexJsonRelationalFixtureBase
4442
{

0 commit comments

Comments
 (0)