tests: use a currently used string for intl test

This commit is contained in:
Scott Talbert
2021-12-30 13:44:25 -05:00
parent 076b41103e
commit a503de821f

View File

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