Skip to content

Commit e7e063b

Browse files
committed
another small correction
1 parent 1975928 commit e7e063b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/UTF8ValidationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ private static bool IsSystemSupported(TestSystemRequirements requiredSystems)
5454
case Architecture.X64:
5555
return (requiredSystems.HasFlag(TestSystemRequirements.X64Avx512) && Vector512.IsHardwareAccelerated && System.Runtime.Intrinsics.X86.Avx512F.IsSupported) ||
5656
(requiredSystems.HasFlag(TestSystemRequirements.X64Avx2) && System.Runtime.Intrinsics.X86.Avx2.IsSupported) ||
57-
(requiredSystems.HasFlag(TestSystemRequirements.X64Sse) && System.Runtime.Intrinsics.X86.Sse.IsSupported);
57+
(requiredSystems.HasFlag(TestSystemRequirements.X64Sse) && System.Runtime.Intrinsics.X86.Ssse3.IsSupported);
5858
default:
5959
return false; // If architecture is not covered above, the test is not supported.
6060
}

0 commit comments

Comments
 (0)