From 18a81dc11d3fd8b75035bd1313ff760b9a9e5039 Mon Sep 17 00:00:00 2001 From: Yay295 Date: Fri, 16 Dec 2022 07:59:50 -0600 Subject: [PATCH] add support for "La" to hopper() test helper --- Tests/helper.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Tests/helper.py b/Tests/helper.py index 0d1d03ac8..b37bf3112 100644 --- a/Tests/helper.py +++ b/Tests/helper.py @@ -247,7 +247,9 @@ def hopper(mode=None, cache={}): # (for fast, isolated, repeatable tests). im = cache.get(mode) if im is None: - if mode == "F": + if mode == "La": + im = hopper("LA").convert(mode) + elif mode == "F": im = hopper("L").convert(mode) elif mode[:4] == "I;16": im = hopper("I").convert(mode)