From 2992ffe17dfc26e462f441ddb519bc14d2f15e52 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Thu, 2 Feb 2017 10:51:54 +1100 Subject: [PATCH] Fix quantizer test --- tests/ImageSharp.Tests/Formats/GeneralFormatTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ImageSharp.Tests/Formats/GeneralFormatTests.cs b/tests/ImageSharp.Tests/Formats/GeneralFormatTests.cs index 70163187c..6873717ed 100644 --- a/tests/ImageSharp.Tests/Formats/GeneralFormatTests.cs +++ b/tests/ImageSharp.Tests/Formats/GeneralFormatTests.cs @@ -94,7 +94,7 @@ namespace ImageSharp.Tests using (Image image = new Image(srcImage)) { - using (FileStream output = File.OpenWrite($"{path}/Wu-{file.FileName}")) + using (FileStream output = File.OpenWrite($"{path}/Palette-{file.FileName}")) { image.Quantize(Quantization.Palette) .Save(output, image.CurrentImageFormat);