Run testTestLocale on Travis

This commit is contained in:
Pierre Rudloff 2017-11-11 22:39:41 +01:00
parent 244fb85379
commit 3ffdec9ca1

View file

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