@@ -467,7 +467,7 @@ public void WriteWithSpanEndingAfterEndThrowsOutOfRange()
467467 Assert . Equal ( "span" , ex . ParamName ) ;
468468 }
469469
470- [ Fact ]
470+ [ Fact , WorkItem ( "https://github.com/dotnet/roslyn/issues/71006" ) ]
471471 public void Comparer_EqualityContract_SameContent_DifferentEncodings ( )
472472 {
473473 // Test case from the issue: two SourceText instances with same content but different encodings
@@ -488,7 +488,7 @@ public void Comparer_EqualityContract_SameContent_DifferentEncodings()
488488 Assert . Equal ( comparer . GetHashCode ( text1 ) , comparer . GetHashCode ( text2 ) ) ;
489489 }
490490
491- [ Fact ]
491+ [ Fact , WorkItem ( "https://github.com/dotnet/roslyn/issues/71006" ) ]
492492 public void Comparer_EqualityContract_SameContent_WithAndWithoutBOM ( )
493493 {
494494 // Test the case described in the issue comments:
@@ -520,7 +520,7 @@ public void Comparer_EqualityContract_SameContent_WithAndWithoutBOM()
520520 Assert . Equal ( comparer . GetHashCode ( textWithBOM ) , comparer . GetHashCode ( textNoBOM ) ) ;
521521 }
522522
523- [ Fact ]
523+ [ Fact , WorkItem ( "https://github.com/dotnet/roslyn/issues/71006" ) ]
524524 public void Comparer_EqualityContract_DifferentContent ( )
525525 {
526526 var text1 = SourceText . From ( "content1" ) ;
@@ -537,7 +537,7 @@ public void Comparer_EqualityContract_DifferentContent()
537537 _ = comparer . GetHashCode ( text2 ) ;
538538 }
539539
540- [ Fact ]
540+ [ Fact , WorkItem ( "https://github.com/dotnet/roslyn/issues/71006" ) ]
541541 public void Comparer_EqualityContract_NullHandling ( )
542542 {
543543 var text = SourceText . From ( "content" ) ;
@@ -554,7 +554,7 @@ public void Comparer_EqualityContract_NullHandling()
554554 Assert . Equal ( 0 , comparer . GetHashCode ( null ) ) ;
555555 }
556556
557- [ Fact ]
557+ [ Fact , WorkItem ( "https://github.com/dotnet/roslyn/issues/71006" ) ]
558558 public void Comparer_EqualityContract_SameContentFromStream ( )
559559 {
560560 const string content = "Stream content" ;
@@ -576,7 +576,7 @@ public void Comparer_EqualityContract_SameContentFromStream()
576576 Assert . Equal ( comparer . GetHashCode ( text1 ) , comparer . GetHashCode ( text2 ) ) ;
577577 }
578578
579- [ Fact ]
579+ [ Fact , WorkItem ( "https://github.com/dotnet/roslyn/issues/71006" ) ]
580580 public void Comparer_ContentEquals_MatchesComparerEquals ( )
581581 {
582582 // Verify that SourceTextComparer.Equals aligns with SourceText.ContentEquals
@@ -591,7 +591,7 @@ public void Comparer_ContentEquals_MatchesComparerEquals()
591591 Assert . Equal ( text1 . ContentEquals ( text2 ) , comparer . Equals ( text1 , text2 ) ) ;
592592 }
593593
594- [ Fact ]
594+ [ Fact , WorkItem ( "https://github.com/dotnet/roslyn/issues/71006" ) ]
595595 public void Comparer_GetContentHash_MatchesComparerHashCode ( )
596596 {
597597 // Verify that SourceTextComparer uses content-based hashing
0 commit comments