fix: #33454 Site config was not set in the correct order #2
1 changed files with 3 additions and 3 deletions
fix: #33454 Fix construct and load test
commit
31735d8692
|
|
@ -30,7 +30,7 @@ class SettingsTest extends TestCase
|
||||||
public function testConstruct()
|
public function testConstruct()
|
||||||
{
|
{
|
||||||
$cfg = new Settings();
|
$cfg = new Settings();
|
||||||
$this->assertNotEmpty($cfg);
|
$this->assertIsObject($cfg);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -69,7 +69,7 @@ class SettingsTest extends TestCase
|
||||||
{
|
{
|
||||||
$cfg = new Settings();
|
$cfg = new Settings();
|
||||||
$cfg = $this->appPath($cfg)->load();
|
$cfg = $this->appPath($cfg)->load();
|
||||||
$this->assertNotEmpty($cfg);
|
$this->assertIsObject($cfg);
|
||||||
return $cfg;
|
return $cfg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -224,4 +224,4 @@ class SettingsTest extends TestCase
|
||||||
|
|
||||||
/* jEdit buffer local properties {{{
|
/* jEdit buffer local properties {{{
|
||||||
* :folding=explicit:collapseFolds=1:
|
* :folding=explicit:collapseFolds=1:
|
||||||
}}}*/
|
}}}*/
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue