fix: #33454 Site config was not set in the correct order #2

Merged
norb merged 6 commits from 33454/feat-site-settings-for-business-settings into master 2024-07-30 12:48:29 +00:00
Showing only changes of commit 31735d8692 - Show all commits

fix: #33454 Fix construct and load test

Andreas Steiner 2024-07-29 12:53:02 +02:00

View file

@ -30,7 +30,7 @@ class SettingsTest extends TestCase
public function testConstruct()
{
$cfg = new Settings();
$this->assertNotEmpty($cfg);
$this->assertIsObject($cfg);
}
/**
@ -69,7 +69,7 @@ class SettingsTest extends TestCase
{
$cfg = new Settings();
$cfg = $this->appPath($cfg)->load();
$this->assertNotEmpty($cfg);
$this->assertIsObject($cfg);
return $cfg;
}