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):