Fixing tests

This commit is contained in:
Philipp Holzer 2019-03-24 20:41:11 +01:00
parent 49def0dc27
commit 3cf0cb71f1
No known key found for this signature in database
GPG key ID: 517BE60E2CE5C8A5
3 changed files with 66 additions and 3 deletions

View file

@ -127,7 +127,7 @@ class Configuration
$cached = $this->configCache->set($cat, $key, $value);
// If there is no connected adapter, we're finished
if (!$this->configAdapter->isConnected() && !empty($this->configSaveBlacklist[$cat][$key])) {
if (!$this->configAdapter->isConnected() || !empty($this->configSaveBlacklist[$cat][$key])) {
return $cached;
}