1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-02-01 04:31:37 +01:00

Prevented finding of check script in lang tests

This commit is contained in:
Dan Brown 2017-12-06 11:17:34 +00:00
parent b167ae795e
commit eeb2b8cbe5
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9

View File

@ -11,7 +11,7 @@ class LanguageTest extends TestCase
public function setUp()
{
parent::setUp();
$this->langs = array_diff(scandir(resource_path('lang')), ['..', '.']);
$this->langs = array_diff(scandir(resource_path('lang')), ['..', '.', 'check.php']);
}
public function test_locales_config_key_set_properly()