Browse Source

Merge branch 'master' of https://github.com/SixLabors/ImageSharp

af/merge-core
James Jackson-South 9 years ago
parent
commit
c96cb62bcd
  1. 4
      tests/ImageSharp.Tests/Image/ImageRotationTests.cs

4
tests/ImageSharp.Tests/Image/ImageRotationTests.cs

@ -45,9 +45,9 @@ namespace ImageSharp.Tests
TestFile file = TestFile.Create(TestImages.Bmp.Car);
using (Image<Rgba32> image = Image.Load<Rgba32>(file.FilePath))
{
Size expected = image.Bounds.Size;
Size original = image.Bounds.Size;
image.Rotate(angle);
return (expected, image.Bounds.Size);
return (original, image.Bounds.Size);
}
}
}

Loading…
Cancel
Save