Fix remaining unit tests after translation changes

This commit is contained in:
Tautvidas Sipavičius
2017-01-30 21:50:22 +02:00
parent a421dbd674
commit 5525a959a8
2 changed files with 2 additions and 2 deletions

View File

@@ -85,7 +85,7 @@ class FrontRouterTest extends MailPoetTest {
expect($result)->equals( expect($result)->equals(
array( array(
404, 404,
'Invalid router endpoint action.' 'Invalid router endpoint action'
) )
); );
} }

View File

@@ -228,7 +228,7 @@ class ExportTest extends MailPoetTest {
$this->fail('Export did not throw an exception'); $this->fail('Export did not throw an exception');
} catch(\Exception $e) { } catch(\Exception $e) {
expect($e->getMessage()) expect($e->getMessage())
->equals("Couldn't save export file on the server"); ->equals("The export file could not be saved on the server.");
} }
} }