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 406201a commit 746557eCopy full SHA for 746557e
tests/AbstractSchedulerTestCase.php
@@ -49,7 +49,8 @@ public function testSchedulerCanScheduleTasksWithCustomTimezone(): void
49
$fooTask = $tasks->get('foo');
50
self::assertCount(1, $tasks);
51
self::assertInstanceOf(DateTimeZone::class, $fooTask->getTimezone());
52
- self::assertSame('Europe/Paris', $fooTask->getName());
+ self::assertSame('Europe/Paris', $fooTask->getTimezone()->getName());
53
+ self::assertSame('foo', $fooTask->getName());
54
}
55
56
/**
0 commit comments