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 d558832 commit 9229669Copy full SHA for 9229669
src/Magento/FunctionalTestingFramework/Allure/Adapter/MagentoAllureAdapter.php
@@ -398,7 +398,7 @@ private function retrieveStepKey($stepLine)
398
private function removeAttachments($step, $testFailed)
399
{
400
//Remove Attachments if verbose flag is not true AND test did not fail
401
- if (getenv('VERBOSE_ARTIFACTS') !== true && $testFailed === null) {
+ if (getenv('VERBOSE_ARTIFACTS') !== "true" && $testFailed === null) {
402
foreach ($step->getAttachments() as $index => $attachment) {
403
$step->removeAttachment($index);
404
unlink(Provider::getOutputDirectory() . DIRECTORY_SEPARATOR . $attachment->getSource());
0 commit comments