Skip to content

Commit 3d4ce3e

Browse files
Tests should be green now
1 parent 2decd40 commit 3d4ce3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/MainClassTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -177,11 +177,11 @@ public function testTranslationWithLineBreaks()
177177
$deepLy = $this->getInstance();
178178

179179
$text = 'Hallo Welt. Wie geht es dir?'.PHP_EOL.PHP_EOL.
180-
'Mir geht es gut. Ich habe viel Spaß beim Programmieren.';
180+
'Ich habe viel Spaß beim Programmieren.';
181181
$translated = $deepLy->translate($text, 'EN', 'DE');
182182

183183
$expectedTranslated = 'Hello world. How are you, man?'.PHP_EOL.PHP_EOL.
184-
'I\'m all right. I have a lot of fun programming.';
184+
'I have a lot of fun programming.';
185185
$this->assertEquals($expectedTranslated, $translated);
186186
}
187187

0 commit comments

Comments
 (0)