Skip to content

Commit 1be96b4

Browse files
committed
Disable failing tests
These tests act as a repro for #81
1 parent 93ce7b8 commit 1be96b4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ImmutableObjectGraph.Generation.Tests/TestSources/ImmutableWithComplexStructField.Tests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public void StructWithoutOperatorsAlwaysRecreatesObjectWithSameValue()
3232
Assert.Equal(s1.Field1, v2.SomeStructField.Field1);
3333
}
3434

35-
[Fact]
35+
[Fact(Skip = "Not yet passing (#81).")]
3636
public void StructWithoutOperatorsAlwaysRecreatesObjectWithoutValue()
3737
{
3838
var s1 = new SomeStructWithMultipleFields(1, 2);
@@ -52,7 +52,7 @@ public void StructWithOperatorsRecreatesObjectWithChangedValue()
5252
Assert.Equal(s13.Field2, v2.SomeStructFieldWithOperator.Field2);
5353
}
5454

55-
[Fact]
55+
[Fact(Skip = "Not yet passing (#81).")]
5656
public void StructWithOperatorsRecyclesObjectWithSameValue()
5757
{
5858
var s12 = new SomeStructWithMultipleFieldsAndOperator(1, 2);

0 commit comments

Comments
 (0)