Commit b868e91f by Qiang Xue

Fixed test break.

parent b0568612
......@@ -411,10 +411,6 @@ trait ActiveRecordTestTrait
$this->assertTrue($customer->isRelationPopulated('orders'));
$this->assertEquals(1, count($customer->orders));
$this->assertEquals(1, count($customer->populatedRelations));
// https://github.com/yiisoft/yii2/issues/1402
$orders = $this->callOrderFind()->with('books')->asArray()->all();
$this->assertEquals(3, count($orders));
}
public function testFindLazyVia()
......
......@@ -105,6 +105,10 @@ class ActiveRecordTest extends DatabaseTestCase
$orders = Order::find()->with('books')->orderBy('id')->all();
$this->assertEquals(3, count($orders));
// https://github.com/yiisoft/yii2/issues/1402
$orders = Order::find()->with('books')->orderBy('id')->asArray()->all();
$this->assertEquals(3, count($orders));
$order = $orders[0];
$this->assertEquals(1, $order->id);
$this->assertEquals(2, count($order->books));
......
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