diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_locale.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/test_locale.py b/tests/test_locale.py index 93cb9fcbd..9b1921bd6 100644 --- a/tests/test_locale.py +++ b/tests/test_locale.py @@ -41,9 +41,8 @@ def test_init(rootdir): assert _('Hello sphinx') == 'Hello sphinx' # nothing changed here assert _('Hello reST') == 'Hello reST' - # load both locale1 and locale2 - locale.init([rootdir / 'test-locale' / 'locale1', - rootdir / 'test-locale' / 'locale2'], 'en', 'myext') + # load locale2 in addition + locale.init([rootdir / 'test-locale' / 'locale2'], 'en', 'myext') _ = locale.get_translation('myext') assert _('Hello world') == 'HELLO WORLD' assert _('Hello sphinx') == 'HELLO SPHINX' |
