Skip to content

Commit 000da7e

Browse files
committed
Fix unit test
1 parent 3fc5f63 commit 000da7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/Magento/Framework/Shell/Test/Unit/CommandRendererBackgroundTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function commandPerOsTypeDataProvider()
5959
{
6060
return [
6161
'windows' => [true, 'start /B "magento background task" ' . $this->testCommand . ' 2>&1'],
62-
'unix' => [false, $this->testCommand . ' > /dev/null &'],
62+
'unix' => [false, $this->testCommand . ' 2>/dev/null >/dev/null &'],
6363
];
6464
}
6565
}

0 commit comments

Comments
 (0)