diff --git a/ckanext/example_itranslation/tests/test_plugin.py b/ckanext/example_itranslation/tests/test_plugin.py index d9598461591..9e25b6f8c2c 100644 --- a/ckanext/example_itranslation/tests/test_plugin.py +++ b/ckanext/example_itranslation/tests/test_plugin.py @@ -31,14 +31,6 @@ def test_translated_string_in_extensions_templates(self): assert_true('This is an untranslated string' in response.body) assert_false('This is a itranslated string' in response.body) - # check that we have only overwritten 'fr' - response = app.get( - url=plugins.toolkit.url_for(controller='home', action='index', - locale='es'), - ) - assert_true('This is an untranslated string' in response.body) - assert_false('This is a itranslated string' in response.body) - def test_translated_string_in_core_templates(self): app = self._get_test_app() response = app.get(