diff --git a/tests/ImageProcessorCore.Tests/Colors/ColorTests.cs b/tests/ImageProcessorCore.Tests/Colors/ColorTests.cs index 69ed6ff73..82e1bd80e 100644 --- a/tests/ImageProcessorCore.Tests/Colors/ColorTests.cs +++ b/tests/ImageProcessorCore.Tests/Colors/ColorTests.cs @@ -96,7 +96,7 @@ namespace ImageProcessorCore.Tests { const string First = "FF000000"; Color color = Color.Black; - string second = color.GetPackedValue().ToString("X"); + string second = color.PackedValue.ToString("X"); Assert.Equal(First, second); } }