Browse Source

fixed test break, fixes #2892

tags/2.0.0-beta
Carsten Brandt 11 years ago
parent
commit
46d9518c52
  1. 2
      tests/unit/framework/ar/ActiveRecordTestTrait.php

2
tests/unit/framework/ar/ActiveRecordTestTrait.php

@ -678,7 +678,7 @@ trait ActiveRecordTestTrait
$this->afterSave(); $this->afterSave();
$this->assertNotNull($customer->id); $this->assertNotNull($customer->id);
$this->assertFalse(static::$afterSaveNewRecord); $this->assertTrue(static::$afterSaveNewRecord);
$this->assertTrue(static::$afterSaveInsert); $this->assertTrue(static::$afterSaveInsert);
$this->assertFalse($customer->isNewRecord); $this->assertFalse($customer->isNewRecord);
} }

Loading…
Cancel
Save