Issue #3133103 by longwave: InstallerCustomConfigDirectoryCreateTest has bad assertions

merge-requests/64/head
xjm 2020-05-10 19:14:51 -05:00
parent 73e9c15df6
commit 6f4f6402c4
1 changed files with 2 additions and 2 deletions

View File

@ -38,11 +38,11 @@ class InstallerCustomConfigDirectoryCreateTest extends InstallerTestBase {
public function testInstaller() {
$this->assertUrl('user/1');
$this->assertResponse(200);
$this->assertDirectoryExists($this->publicFilesDirectory . '/config_custom') && is_dir($this->publicFilesDirectory . '/config_custom');
$this->assertDirectoryExists($this->publicFilesDirectory . '/config_custom');
// Ensure the sync directory also exists.
$sync_directory = Settings::get('config_sync_directory');
$this->assertDirectoryExists($sync_directory) && is_dir($sync_directory);
$this->assertDirectoryExists($sync_directory);
}
}