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 51de51a commit c2cfa83Copy full SHA for c2cfa83
dev/tests/integration/testsuite/Magento/ImportExport/Model/Export/Adapter/CsvTest.php
@@ -48,7 +48,10 @@ protected function setUp(): void
48
*/
49
public function testDestruct(string $destination, bool $shouldBeDeleted): void
50
{
51
- $csv = $this->objectManager->create(Csv::class, ['destination' => $destination]);
+ $csv = $this->objectManager->create(Csv::class, [
52
+ 'destination' => $destination,
53
+ 'destinationDirectoryCode' => DirectoryList::VAR_DIR
54
+ ]);
55
/** @var Filesystem $fileSystem */
56
$fileSystem = $this->objectManager->get(Filesystem::class);
57
$directoryHandle = $fileSystem->getDirectoryRead(DirectoryList::VAR_DIR);
0 commit comments