diff --git a/tests/ImageSharp.Sandbox46/Program.cs b/tests/ImageSharp.Sandbox46/Program.cs index 869a720df..f3875e24a 100644 --- a/tests/ImageSharp.Sandbox46/Program.cs +++ b/tests/ImageSharp.Sandbox46/Program.cs @@ -64,7 +64,7 @@ namespace SixLabors.ImageSharp.Sandbox46 private static void RunToVector4ProfilingTest() { - PixelOperationsTests.Color32 tests = new PixelOperationsTests.Color32(new ConsoleOutput()); + PixelOperationsTests.Rgba32 tests = new PixelOperationsTests.Rgba32(new ConsoleOutput()); tests.Benchmark_ToVector4(); } @@ -75,7 +75,7 @@ namespace SixLabors.ImageSharp.Sandbox46 foreach (object[] data in JpegProfilingBenchmarks.DecodeJpegData) { string fileName = (string)data[0]; - benchmarks.DecodeJpeg(fileName); + benchmarks.DecodeJpeg_Original(fileName); } } }