Description: Adjust surface masks to create a proper 24 bit Surface
 The SDL 2.26.0 pre-release rejects a 24 bit Surface created with this mask,
 which is the right call, as it needs 32 bits of space. Older SDL went ahead
 and created a 32 bit surface anyway, which it probably shouldn't have.
Author: Starbuck5 <46412508+Starbuck5@users.noreply.github.com>
Origin: https://github.com/pygame/pygame/pull/3577
Bug-Debian: https://bugs.debian.org/1026483

--- a/test/surface_test.py
+++ b/test/surface_test.py
@@ -2013,7 +2013,7 @@ class GeneralSurfaceTests(AssertRaisesRe
             mask8 = (224, 28, 3, 0)
             mask15 = (31744, 992, 31, 0)
             mask16 = (63488, 2016, 31, 0)
-            mask24 = (4278190080, 16711680, 65280, 0)
+            mask24 = (16711680, 65280, 255, 0)
             mask32 = (4278190080, 16711680, 65280, 255)
 
             # Surfaces with standard depths and masks
