Skip to content

Commit 3dbc5f3

Browse files
committed
ITT: Laravel 5.2 support.
1 parent 311a326 commit 3dbc5f3

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/Asserts/ScheduleAsserts.php

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,8 @@ protected function seeInSchedule($command, $expression, $runInBackground = false
3131
$expression = $this->normalizeScheduleExpression(clone $event, $expression);
3232
$this->assertEquals($expression, $event->expression, $message);
3333

34-
/* @laravel-versions */
35-
if (isset($event->runInBackground)) {
36-
$message = "Failed asserting that command `{$command}` is scheduled with the same `run in background` mode.";
37-
$this->assertEquals($runInBackground, $event->runInBackground, $message);
38-
}
34+
$message = "Failed asserting that command `{$command}` is scheduled with the same `run in background` mode.";
35+
$this->assertEquals($runInBackground, $event->runInBackground, $message);
3936
}
4037

4138
protected function dontSeeInSchedule($command)

0 commit comments

Comments
 (0)