Fix tests (#5400)
* Avoid argc side-effects * Fix undefined array keys in JITConfigAdapter::set() * Avoid argv side effects in ApiTest
This commit is contained in:
committed by
Hypolite Petovan
parent
b265bf2ec3
commit
6e1ed0b0d3
@@ -96,6 +96,13 @@ class JITConfigAdapter extends BaseObject implements IConfigAdapter
|
||||
|
||||
$stored = $this->get($cat, $k, null, true);
|
||||
|
||||
if (!isset($this->in_db[$cat])) {
|
||||
$this->in_db[$cat] = [];
|
||||
}
|
||||
if (!isset($this->in_db[$cat][$k])) {
|
||||
$this->in_db[$cat] = false;
|
||||
}
|
||||
|
||||
if (($stored === $dbvalue) && $this->in_db[$cat][$k]) {
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user