We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9f796c commit 3a08116Copy full SHA for 3a08116
tests/system/Models/InsertModelTest.php
@@ -120,7 +120,7 @@ public function testInsertBatchSetsIntTimestamps(): void
120
$this->assertSame(2, $this->model->insertBatch($jobData));
121
122
$result = $this->model->where('name', 'Philosopher')->first();
123
- $this->assertCloseEnough(time(), $result->created_at);
+ $this->assertCloseEnough(time(), (int) $result->created_at);
124
}
125
126
public function testInsertBatchSetsDatetimeTimestamps(): void
0 commit comments