We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05b4794 commit 8c0ce80Copy full SHA for 8c0ce80
packages/google-cloud-translate/tests/system.py
@@ -1,3 +1,4 @@
1
+# -*- coding: utf-8 -*-
2
# Copyright 2016 Google LLC
3
#
4
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -74,7 +75,7 @@ def test_translate(self):
74
75
self.assertEqual(
76
translations[2]['detectedSourceLanguage'], 'es')
77
- translations[2]['translatedText'].lower(), 'mein name ist jeff')
78
+ translations[2]['translatedText'].lower(), u'ich heiße jeff')
79
80
81
translations[3]['detectedSourceLanguage'], 'en')
0 commit comments