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 b150ec6 commit 5b2a379Copy full SHA for 5b2a379
tests/Console/Scheduling/EventTest.php
@@ -101,7 +101,7 @@ public function testCustomMutexName()
101
$event = new Event(m::mock(EventMutex::class), 'php -i');
102
$event->description('Fancy command description');
103
104
- $this->assertSame('framework/schedule-eeb46c93d45e928d62aaf684d727e213b7094822', $event->mutexName());
+ $this->assertSame('framework'.DIRECTORY_SEPARATOR.'schedule-eeb46c93d45e928d62aaf684d727e213b7094822', $event->mutexName());
105
106
$event->createMutexNameUsing(function (Event $event) {
107
return Str::slug($event->description);
0 commit comments