Skip to content

Commit 9cfc05d

Browse files
Update TaskHandlerTest.php
fix retried_jobs_get_a_new_name
1 parent a61b9e0 commit 9cfc05d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/TaskHandlerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,11 +499,11 @@ public function retried_jobs_get_a_new_name()
499499
CloudTasksApi::assertCreatedTaskCount(2);
500500
CloudTasksApi::assertTaskCreated(function (Task $task): bool {
501501
[$timestamp] = array_reverse(explode('-', $task->getName()));
502-
return $timestamp === '1685035628';
502+
return $timestamp === '1685035628000';
503503
});
504504
CloudTasksApi::assertTaskCreated(function (Task $task): bool {
505505
[$timestamp] = array_reverse(explode('-', $task->getName()));
506-
return $timestamp === '1685035629';
506+
return $timestamp === '1685035629000';
507507
});
508508
}
509509
}

0 commit comments

Comments
 (0)