We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a94f242 commit e1ab850Copy full SHA for e1ab850
tests/BootstrapperTest.php
@@ -194,7 +194,7 @@ public function filesystem_data_is_separated()
194
// Check that disk prefixes respect the root_override logic
195
$this->assertSame($expected_storage_path . '/app/', $this->getDiskPrefix('local'));
196
$this->assertSame($expected_storage_path . '/app/public/', $this->getDiskPrefix('public'));
197
- $this->assertSame('/tenant' . tenant('id') . '/', $this->getDiskPrefix('s3'));
+ $this->assertSame('tenant' . tenant('id') . '/', ltrim($this->getDiskPrefix('s3'), '/'));
198
199
// Check suffixing logic
200
$new_storage_path = storage_path();
0 commit comments