@@ -56,7 +56,6 @@ public SqlStringTest()
5656 }
5757
5858 [ Fact ]
59- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/95195" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsHybridGlobalizationOnApplePlatform ) ) ]
6059 public void Constructor_Value_Success ( )
6160 {
6261 const string value = "foo" ;
@@ -220,7 +219,6 @@ public void CompareToSqlTypeException()
220219 }
221220
222221 [ ConditionalFact ( typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsNotInvariantGlobalization ) ) ]
223- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/95195" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsHybridGlobalizationOnApplePlatform ) ) ]
224222 public void CompareTo ( )
225223 {
226224 Assert . True ( _test1 . CompareTo ( _test3 ) < 0 ) ;
@@ -261,7 +259,6 @@ public void CompareTo()
261259 }
262260
263261 [ Fact ]
264- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/95195" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsHybridGlobalizationOnApplePlatform ) ) ]
265262 public void EqualsMethods ( )
266263 {
267264 Assert . False ( _test1 . Equals ( _test2 ) ) ;
@@ -278,7 +275,6 @@ public void EqualsMethods()
278275 }
279276
280277 [ Fact ]
281- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/95195" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsHybridGlobalizationOnApplePlatform ) ) ]
282278 public void Greaters ( )
283279 {
284280 // GreateThan ()
@@ -293,7 +289,6 @@ public void Greaters()
293289 }
294290
295291 [ Fact ]
296- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/95195" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsHybridGlobalizationOnApplePlatform ) ) ]
297292 public void Lessers ( )
298293 {
299294 // LessThan()
@@ -309,7 +304,6 @@ public void Lessers()
309304 }
310305
311306 [ Fact ]
312- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/95195" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsHybridGlobalizationOnApplePlatform ) ) ]
313307 public void NotEquals ( )
314308 {
315309 Assert . True ( SqlString . NotEquals ( _test1 , _test2 ) . Value ) ;
@@ -320,7 +314,6 @@ public void NotEquals()
320314 }
321315
322316 [ Fact ]
323- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/95195" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsHybridGlobalizationOnApplePlatform ) ) ]
324317 public void Concat ( )
325318 {
326319 _test1 = new SqlString ( "First TestString" ) ;
@@ -332,7 +325,6 @@ public void Concat()
332325 }
333326
334327 [ Fact ]
335- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/95195" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsHybridGlobalizationOnApplePlatform ) ) ]
336328 public void Clone ( )
337329 {
338330 SqlString testSqlString = _test1 . Clone ( ) ;
@@ -352,7 +344,6 @@ public void CompareOptionsFromSqlCompareOptions()
352344 }
353345
354346 [ Fact ]
355- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/95195" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsHybridGlobalizationOnApplePlatform ) ) ]
356347 public void UnicodeBytes ( )
357348 {
358349 Assert . Equal ( ( byte ) 105 , _test1 . GetNonUnicodeBytes ( ) [ 1 ] ) ;
@@ -549,7 +540,6 @@ public void Conversions()
549540 // OPERATORS
550541
551542 [ Fact ]
552- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/95195" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsHybridGlobalizationOnApplePlatform ) ) ]
553543 public void ArithmeticOperators ( )
554544 {
555545 SqlString testString = new SqlString ( "...Testing..." ) ;
@@ -558,7 +548,6 @@ public void ArithmeticOperators()
558548 }
559549
560550 [ Fact ]
561- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/95195" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsHybridGlobalizationOnApplePlatform ) ) ]
562551 public void ThanOrEqualOperators ( )
563552 {
564553 // == -operator
0 commit comments