We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2decd40 commit 3d4ce3eCopy full SHA for 3d4ce3e
tests/MainClassTest.php
@@ -177,11 +177,11 @@ public function testTranslationWithLineBreaks()
177
$deepLy = $this->getInstance();
178
179
$text = 'Hallo Welt. Wie geht es dir?'.PHP_EOL.PHP_EOL.
180
- 'Mir geht es gut. Ich habe viel Spaß beim Programmieren.';
+ 'Ich habe viel Spaß beim Programmieren.';
181
$translated = $deepLy->translate($text, 'EN', 'DE');
182
183
$expectedTranslated = 'Hello world. How are you, man?'.PHP_EOL.PHP_EOL.
184
- 'I\'m all right. I have a lot of fun programming.';
+ 'I have a lot of fun programming.';
185
$this->assertEquals($expectedTranslated, $translated);
186
}
187
0 commit comments