Browse Source

PixelAccessor needs to be internal in unit tests

pull/1570/head
Andrew Wilkinson 9 years ago
parent
commit
49df888a50
  1. 2
      tests/ImageSharp.Formats.Tiff.Tests/Formats/Tiff/PhotometricInterpretation/PhotometricInterpretationTestBase.cs

2
tests/ImageSharp.Formats.Tiff.Tests/Formats/Tiff/PhotometricInterpretation/PhotometricInterpretationTestBase.cs

@ -41,7 +41,7 @@ namespace ImageSharp.Tests
return output;
}
public static void AssertDecode(Rgba32[][] expectedResult, Action<PixelAccessor<Rgba32>> decodeAction)
internal static void AssertDecode(Rgba32[][] expectedResult, Action<PixelAccessor<Rgba32>> decodeAction)
{
int resultWidth = expectedResult[0].Length;
int resultHeight = expectedResult.Length;

Loading…
Cancel
Save