File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed
Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ name: run-tests
22
33on :
44 push :
5- branches : [master ]
5+ branches : [v13 ]
66 pull_request :
7- branches : [master ]
7+ branches : [v13 ]
88
99jobs :
1010 run-tests :
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public static function resolve(Auditable $auditable): string
2525 public static function resolveCommandLine (): string
2626 {
2727 $ command = Request::server ('argv ' , null );
28- if (is_array ($ command )) {
28+ if (is_array ($ command )) { // @phpstan-ignore function.impossibleType
2929 return implode (' ' , $ command );
3030 }
3131
Original file line number Diff line number Diff line change @@ -311,9 +311,7 @@ public function it_will_remove_older_audits_above_the_threshold()
311311 ]);
312312
313313 foreach (range (1 , 20 ) as $ count ) {
314- if ($ count === 11 ) {
315- sleep (1 );
316- }
314+ Carbon::setTestNow (now ()->addSeconds ($ count ));
317315
318316 $ article ->update ([
319317 'title ' => 'Title # ' .$ count ,
You can’t perform that action at this time.
0 commit comments