From 323a6e0728b019d5e0aca30a24ed317bdc9354d2 Mon Sep 17 00:00:00 2001 From: Jeroen van Rijn Date: Fri, 7 Jun 2024 22:19:01 +0200 Subject: [PATCH] Nuke ancient comment. --- tests/core/image/test_core_image.odin | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/core/image/test_core_image.odin b/tests/core/image/test_core_image.odin index 495950c80..857022b81 100644 --- a/tests/core/image/test_core_image.odin +++ b/tests/core/image/test_core_image.odin @@ -1472,7 +1472,6 @@ run_png_suite :: proc(t: ^testing.T, suite: []Test) { if err == nil { // No point in running the other tests if it didn't load. pixels := bytes.buffer_to_bytes(&img.pixels) - // This struct compare fails at -opt:2 if PNG_Dims is not #packed. dims := Dims{img.width, img.height, img.channels, img.depth} dims_pass := test.dims == dims testing.expectf(t, dims_pass, "%v has %v, expected: %v", file.file, dims, test.dims)