Commit 98b4540e by Qiang Xue

fixed test break

parent 5425dc92
...@@ -86,9 +86,9 @@ class ActiveDataProvider extends BaseDataProvider ...@@ -86,9 +86,9 @@ class ActiveDataProvider extends BaseDataProvider
parent::init(); parent::init();
if (is_string($this->db)) { if (is_string($this->db)) {
$this->db = Yii::$app->getComponent($this->db); $this->db = Yii::$app->getComponent($this->db);
} if ($this->db === null) {
if ($this->db === null) { throw new InvalidConfigException('The "db" property must be a valid DB Connection application component.');
throw new InvalidConfigException('The "db" property must be a valid DB Connection application component.'); }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment