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 4e3ad8e commit cf34a2cCopy full SHA for cf34a2c
app/code/Magento/AwsS3/Test/Unit/Driver/AwsS3Test.php
@@ -439,8 +439,8 @@ public function testSearchDirectory(): void
439
$this->metadataProviderMock->expects(self::any())->method('getMetadata')
440
->willReturnMap([
441
['path', ['type' => AwsS3::TYPE_DIR]],
442
- ['path/1', ['type' => AwsS3::TYPE_FILE]],
443
- ['path/2', ['type' => AwsS3::TYPE_FILE]],
+ ['path/1', ['type' => AwsS3::TYPE_DIR]],
+ ['path/2', ['type' => AwsS3::TYPE_DIR]],
444
]);
445
$this->adapterMock->expects(self::atLeastOnce())->method('listContents')
446
->willReturn(new \ArrayIterator($subPaths));
0 commit comments