From b85f061b015b06b2cf8626e0dfbdd77f689a7a4e Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Sun, 16 Feb 2025 13:31:24 +0100 Subject: [PATCH] [3.12] gh-130177: Fix unintentionally skipped tests in test_gettext (GH-130178) (GH-130184) (cherry picked from commit 2e8044a4f74f5fc19e5249139c171403aff0118d) Co-authored-by: Tomas R --- Lib/test/test_gettext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_gettext.py b/Lib/test/test_gettext.py index dd33b9b88f67..acc2abf4034d 100644 --- a/Lib/test/test_gettext.py +++ b/Lib/test/test_gettext.py @@ -450,7 +450,7 @@ class GNUTranslationsClassPluralFormsTestCase(PluralFormsTests, GettextBaseTest) numbers_only=False) -class PluralFormsInternalTestCase: +class PluralFormsInternalTestCase(unittest.TestCase): # Examples from http://www.gnu.org/software/gettext/manual/gettext.html def test_ja(self): -- 2.47.3