From 0d7c0d2333ca7f2ec566fec1098d5f9e3135711e Mon Sep 17 00:00:00 2001 From: Thomas Broust Date: Wed, 25 Feb 2015 14:02:55 +0100 Subject: [PATCH] Removes saving of the test images Former-commit-id: 7e86424dbb0674fc62b1488518ade46eff5083d4 Former-commit-id: 293846a5c7b59dfd79c4cf133ad5f2edbf1a3ccf --- src/ImageProcessor.UnitTests/ImageFactoryUnitTests.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ImageProcessor.UnitTests/ImageFactoryUnitTests.cs b/src/ImageProcessor.UnitTests/ImageFactoryUnitTests.cs index 14d4c16cf4..e4eb9db824 100644 --- a/src/ImageProcessor.UnitTests/ImageFactoryUnitTests.cs +++ b/src/ImageProcessor.UnitTests/ImageFactoryUnitTests.cs @@ -488,7 +488,6 @@ namespace ImageProcessor.UnitTests [Test] public void ImageIsRotatedInsideAndResized() { - int i = 0; foreach (ImageFactory imageFactory in this.ListInputImages()) { Image original = (Image)imageFactory.Image.Clone(); @@ -496,8 +495,6 @@ namespace ImageProcessor.UnitTests imageFactory.Image.Width.Should().NotBe(original.Width, "because the rotated image dimensions should have changed"); imageFactory.Image.Height.Should().NotBe(original.Height, "because the rotated image dimensions should have changed"); - - imageFactory.Format(new ImageProcessor.Imaging.Formats.JpegFormat()).Save("./output/rotateinsideresized-" + i++.ToString() + ".jpg"); } }