Browse Source

Fixed scope issue in tests

tags/2.0.0-beta
Alexander Makarov 13 years ago
parent
commit
85c0a3b355
  1. 5
      tests/unit/data/ar/Customer.php

5
tests/unit/data/ar/Customer.php

@ -23,9 +23,10 @@ class Customer extends ActiveRecord
public static function scopes() public static function scopes()
{ {
$status = self::STATUS_ACTIVE;
return array( return array(
'active' => function($q) { 'active' => function($q) use ($status){
return $q->andWhere('@.`status` = ' . self::STATUS_ACTIVE); return $q->andWhere('@.`status` = ' . $status);
}, },
); );
} }

Loading…
Cancel
Save