From a3fece8096c2c2a736e5acc38ac52c26ca47ae01 Mon Sep 17 00:00:00 2001 From: Matthias Bisping Date: Tue, 31 Jan 2023 14:16:33 +0100 Subject: [PATCH] Found first issue for pale colors --- test/fixtures/page_generation/page.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/page_generation/page.py b/test/fixtures/page_generation/page.py index 5429bd9..47f2715 100644 --- a/test/fixtures/page_generation/page.py +++ b/test/fixtures/page_generation/page.py @@ -185,7 +185,7 @@ Color = Tuple[int, int, int] def base_texture(request, size): texture = Image.open(TEST_PAGE_TEXTURES_DIR / (request.param + ".jpg")) texture = texture.resize(size) - texture.putalpha(255) + # texture.putalpha(255) # ISSUE 1!!! return texture