Commit 603a915c0 for imagemagick.org
commit 603a915c0b5e7673c8e9e4e9d3d1b60dbb857719
Author: Dirk Lemstra <dirk@lemstra.org>
Date: Sat Apr 11 11:46:22 2026 +0200
Use a consistent order instead.
diff --git a/tests/validate.h b/tests/validate.h
index d7c543e8a..7ebe0b8b4 100644
--- a/tests/validate.h
+++ b/tests/validate.h
@@ -505,19 +505,19 @@ struct ReferenceTypes
static const struct ReferenceTypes
reference_types[] =
{
- { TrueColorType, 8 },
- { TrueColorAlphaType, 8 },
+ { BilevelType, 1 },
+ { ColorSeparationType, 8 },
+ { ColorSeparationAlphaType, 8 },
{ GrayscaleType, 8 },
{ GrayscaleAlphaType, 8 },
{ PaletteType, 8 },
{ PaletteAlphaType, 8 },
{ PaletteBilevelAlphaType, 8 },
- { BilevelType, 1 },
- { ColorSeparationType, 8 },
- { ColorSeparationAlphaType, 8 },
+ { TrueColorType, 8 },
{ TrueColorType, 10 },
{ TrueColorType, 12 },
{ TrueColorType, 16 },
+ { TrueColorAlphaType, 8 },
{ UndefinedType, 0 }
};