Fixing tests

This commit is contained in:
Philipp Holzer
2019-03-24 20:41:11 +01:00
parent 49def0dc27
commit 3cf0cb71f1
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;
}