mirror of
https://github.com/friendica/friendica
synced 2025-09-08 23:16:46 +02:00
fix code style
This commit is contained in:
parent
603f96b403
commit
53191caeac
1 changed files with 8 additions and 4 deletions
|
@ -184,8 +184,10 @@ class StrategiesFileManagerTest extends MockedTestCase
|
|||
$hookFileManager = new StrategiesFileManager($this->root->url(), $config);
|
||||
|
||||
self::expectException(HookConfigException::class);
|
||||
self::expectExceptionMessage(sprintf('config file %s does not exist.',
|
||||
$this->root->url() . '/' . StrategiesFileManager::STATIC_DIR . '/' . StrategiesFileManager::CONFIG_NAME . '.config.php'));
|
||||
self::expectExceptionMessage(sprintf(
|
||||
'config file %s does not exist.',
|
||||
$this->root->url() . '/' . StrategiesFileManager::STATIC_DIR . '/' . StrategiesFileManager::CONFIG_NAME . '.config.php'
|
||||
));
|
||||
|
||||
$hookFileManager->loadConfig();
|
||||
}
|
||||
|
@ -204,8 +206,10 @@ class StrategiesFileManagerTest extends MockedTestCase
|
|||
->at($this->root);
|
||||
|
||||
self::expectException(HookConfigException::class);
|
||||
self::expectExceptionMessage(sprintf('Error loading config file %s.',
|
||||
$this->root->url() . '/' . StrategiesFileManager::STATIC_DIR . '/' . StrategiesFileManager::CONFIG_NAME . '.config.php'));
|
||||
self::expectExceptionMessage(sprintf(
|
||||
'Error loading config file %s.',
|
||||
$this->root->url() . '/' . StrategiesFileManager::STATIC_DIR . '/' . StrategiesFileManager::CONFIG_NAME . '.config.php'
|
||||
));
|
||||
|
||||
$hookFileManager->loadConfig();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue