Skip to content

Commit 12abd59

Browse files
committed
correction to repair breaking change from another merge
1 parent cb8a9c3 commit 12abd59

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tests/ImageSharp.Tests/Formats/Tiff/TiffDecoderTests.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public void TiffDecoder_CanDecode_12Bit_WithUnassociatedAlpha<TPixel>(TestImageP
192192
public void TiffDecoder_CanDecode_12Bit_WithAssociatedAlpha<TPixel>(TestImageProvider<TPixel> provider)
193193
where TPixel : unmanaged, IPixel<TPixel>
194194
{
195-
if (TestEnvironment.IsOSX)
195+
if (TestEnvironment.IsMacOS)
196196
{
197197
// Only debug save on OSX: For some reason the reference image has a difference of 50%. The imagesharp output file looks ok though.
198198
using Image<TPixel> image = provider.GetImage(TiffDecoder);
@@ -249,7 +249,7 @@ public void TiffDecoder_CanDecode_20Bit_WithAssociatedAlpha<TPixel>(TestImagePro
249249

250250
where TPixel : unmanaged, IPixel<TPixel>
251251
{
252-
if (TestEnvironment.IsOSX)
252+
if (TestEnvironment.IsMacOS)
253253
{
254254
// Only debug save on OSX: For some reason the reference image has a difference of 50%. The imagesharp output file looks ok though.
255255
using Image<TPixel> image = provider.GetImage(TiffDecoder);
@@ -276,7 +276,7 @@ public void TiffDecoder_CanDecode_24Bit_WithUnassociatedAlpha<TPixel>(TestImageP
276276
public void TiffDecoder_CanDecode_24Bit_WithAssociatedAlpha<TPixel>(TestImageProvider<TPixel> provider)
277277
where TPixel : unmanaged, IPixel<TPixel>
278278
{
279-
if (TestEnvironment.IsOSX)
279+
if (TestEnvironment.IsMacOS)
280280
{
281281
// Only debug save on OSX: For some reason the reference image has a difference of 50%. The imagesharp output file looks ok though.
282282
using Image<TPixel> image = provider.GetImage(TiffDecoder);
@@ -353,7 +353,7 @@ public void TiffDecoder_CanDecode_32Bit_WithUnassociatedAlpha<TPixel>(TestImageP
353353
public void TiffDecoder_CanDecode_32Bit_WithAssociatedAlpha<TPixel>(TestImageProvider<TPixel> provider)
354354
where TPixel : unmanaged, IPixel<TPixel>
355355
{
356-
if (TestEnvironment.IsOSX)
356+
if (TestEnvironment.IsMacOS)
357357
{
358358
// Only debug save on OSX: For some reason the reference image has a difference of 50%. The imagesharp output file looks ok though.
359359
using Image<TPixel> image = provider.GetImage(TiffDecoder);
@@ -393,7 +393,7 @@ public void TiffDecoder_CanDecode_40Bit_WithUnassociatedAlpha<TPixel>(TestImageP
393393
public void TiffDecoder_CanDecode_40Bit_WithAssociatedAlpha<TPixel>(TestImageProvider<TPixel> provider)
394394
where TPixel : unmanaged, IPixel<TPixel>
395395
{
396-
if (TestEnvironment.IsOSX)
396+
if (TestEnvironment.IsMacOS)
397397
{
398398
// Only debug save on OSX: For some reason the reference image has a difference of 50%. The imagesharp output file looks ok though.
399399
using Image<TPixel> image = provider.GetImage(TiffDecoder);
@@ -432,7 +432,7 @@ public void TiffDecoder_CanDecode_48Bit_WithUnassociatedAlpha<TPixel>(TestImageP
432432
public void TiffDecoder_CanDecode_48Bit_WithAssociatedAlpha<TPixel>(TestImageProvider<TPixel> provider)
433433
where TPixel : unmanaged, IPixel<TPixel>
434434
{
435-
if (TestEnvironment.IsOSX)
435+
if (TestEnvironment.IsMacOS)
436436
{
437437
// Only debug save on OSX: For some reason the reference image has a difference of 50%. The imagesharp output file looks ok though.
438438
using Image<TPixel> image = provider.GetImage(TiffDecoder);
@@ -462,7 +462,7 @@ public void TiffDecoder_CanDecode_56Bit_WithUnassociatedAlpha<TPixel>(TestImageP
462462
public void TiffDecoder_CanDecode_56Bit_WithAssociatedAlpha<TPixel>(TestImageProvider<TPixel> provider)
463463
where TPixel : unmanaged, IPixel<TPixel>
464464
{
465-
if (TestEnvironment.IsOSX)
465+
if (TestEnvironment.IsMacOS)
466466
{
467467
// Only debug save on OSX: For some reason the reference image has a difference of 50%. The imagesharp output file looks ok though.
468468
using Image<TPixel> image = provider.GetImage(TiffDecoder);

0 commit comments

Comments
 (0)