Skip to content

Commit

Permalink
Issue #3133103 by longwave: InstallerCustomConfigDirectoryCreateTest …
Browse files Browse the repository at this point in the history
…has bad assertions
  • Loading branch information
xjm committed May 11, 2020
1 parent 8d40524 commit aeb6c0e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ protected function prepareEnvironment() {
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);
}

}

0 comments on commit aeb6c0e

Please sign in to comment.