Skip to content

Commit

Permalink
Tests should be green now
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskonnertz committed Sep 29, 2018
1 parent 2decd40 commit 3d4ce3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/MainClassTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,11 @@ public function testTranslationWithLineBreaks()
$deepLy = $this->getInstance();

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

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

Expand Down

0 comments on commit 3d4ce3e

Please sign in to comment.