Commit 46d9518c by Carsten Brandt

fixed test break, fixes #2892

parent c73cfe14
...@@ -678,7 +678,7 @@ trait ActiveRecordTestTrait ...@@ -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);
} }
......
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