From a503de821f9d238f96c8f02d0d48c745828689a1 Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Thu, 30 Dec 2021 13:44:25 -0500 Subject: [PATCH] tests: use a currently used string for intl test --- unittests/test_intl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unittests/test_intl.py b/unittests/test_intl.py index c0f8465d..5368a95a 100644 --- a/unittests/test_intl.py +++ b/unittests/test_intl.py @@ -28,8 +28,8 @@ class intl_Tests(wtc.WidgetTestCase): def test_intlGetString(self): # This tests if we're able to pull translations from the wx message catalogs loc = wx.Locale(wx.LANGUAGE_SPANISH) - st = loc.GetString('Next') - self.assertEqual(st, 'Siguiente') + st = loc.GetString('&Next') + self.assertEqual(st, '&Siguiente') def test_intlConstants(self):