Skip to content

Commit fd04531

Browse files
committed
Check for SSE42 not SSE
1 parent eca4734 commit fd04531

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ImageSharp.Tests/TestUtilities/Tests/FeatureTestRunnerTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ static void AssertHwIntrinsicsFeatureDisabled(string serializable)
169169
{
170170
Assert.NotNull(serializable);
171171
Assert.NotNull(FeatureTestRunner.DeserializeForXunit<FakeSerializable>(serializable));
172-
Assert.False(Sse.IsSupported, "SSE should be disabled when DisableSSE42 is set (sanity check using serializable param overload).");
172+
Assert.False(Sse42.IsSupported, "SSE42 should be disabled when DisableSSE42 is set (sanity check using serializable param overload).");
173173
}
174174

175175
FeatureTestRunner.RunWithHwIntrinsicsFeature(

0 commit comments

Comments
 (0)