Run testTestLocale on Travis

This commit is contained in:
Pierre Rudloff 2017-11-11 22:39:41 +01:00
parent 244fb85379
commit 3ffdec9ca1
1 changed files with 3 additions and 4 deletions

View File

@ -53,12 +53,11 @@ class LocaleMiddlewareTest extends TestCase
*/
public function testTestLocale()
{
$this->markTestSkipped('For some reason, this test fails on Travis even if the fr_FR locale is installed.');
$locale = [
'language' => 'fr',
'region' => 'FR',
'language' => 'en',
'region' => 'US',
];
$this->assertEquals('fr_FR', $this->middleware->testLocale($locale));
$this->assertEquals('en_US', $this->middleware->testLocale($locale));
}
/**