1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

Updated lanauge lists to match latest translations

This commit is contained in:
Dan Brown
2020-03-04 22:14:25 +00:00
parent 6303c788ed
commit 34616ac195
4 changed files with 15 additions and 12 deletions

View File

@ -19,7 +19,7 @@ class LanguageTest extends TestCase
$configLocales = config('app.locales');
sort($configLocales);
sort($this->langs);
$this->assertTrue(implode(':', $this->langs) === implode(':', $configLocales), 'app.locales configuration variable matches found lang files');
$this->assertEquals(implode(':', $configLocales), implode(':', $this->langs), 'app.locales configuration variable does not match those found in lang files');
}
public function test_correct_language_if_not_logged_in()