mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
Improve method name
This commit is contained in:
parent
da08f6ef8c
commit
f7d2b62d87
|
@ -8,7 +8,7 @@ trait InteractsWithSettings
|
|||
{
|
||||
protected Settings $settings;
|
||||
|
||||
public function setUpSettings()
|
||||
public function initializeSettings()
|
||||
{
|
||||
$this->settings = Settings::initialize();
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ abstract class TestCase extends BaseTestCase
|
|||
$this->withoutMiddleware($this->globallyDisabledMiddleware);
|
||||
|
||||
if (collect(class_uses_recursive($this))->contains(InteractsWithSettings::class)) {
|
||||
$this->setUpSettings();
|
||||
$this->initializeSettings();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue