diff --git a/translate/tests/system.py b/translate/tests/system.py index f0e4ba0c341f..cf6e055800cf 100644 --- a/translate/tests/system.py +++ b/translate/tests/system.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright 2016 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -74,7 +75,7 @@ def test_translate(self): self.assertEqual( translations[2]['detectedSourceLanguage'], 'es') self.assertEqual( - translations[2]['translatedText'].lower(), 'mein name ist jeff') + translations[2]['translatedText'].lower(), u'ich heiße jeff') self.assertEqual( translations[3]['detectedSourceLanguage'], 'en')