Skip to content

Commit 5b2a379

Browse files
authored
Fix separator for Windows OS
1 parent b150ec6 commit 5b2a379

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Console/Scheduling/EventTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public function testCustomMutexName()
101101
$event = new Event(m::mock(EventMutex::class), 'php -i');
102102
$event->description('Fancy command description');
103103

104-
$this->assertSame('framework/schedule-eeb46c93d45e928d62aaf684d727e213b7094822', $event->mutexName());
104+
$this->assertSame('framework'.DIRECTORY_SEPARATOR.'schedule-eeb46c93d45e928d62aaf684d727e213b7094822', $event->mutexName());
105105

106106
$event->createMutexNameUsing(function (Event $event) {
107107
return Str::slug($event->description);

0 commit comments

Comments
 (0)