Skip to content

Commit 2cfa59a

Browse files
committed
MQE-1068: Require Issue ID for Skipped Test
- Removed verbose requirement for deprecation warnign flag
1 parent e7833c7 commit 2cfa59a

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/Magento/FunctionalTestingFramework/Test/Util/AnnotationExtractor.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,10 @@ public function extractAnnotations($testAnnotations, $filename)
7575
}
7676
// TODO deprecation|deprecate MFTF 3.0.0
7777
if ($annotationKey == "group" && in_array("skip", $annotationValues)) {
78-
if (MftfApplicationConfig::getConfig()->verboseEnabled()) {
79-
LoggingUtil::getInstance()->getLogger(AnnotationExtractor::class)->warning(
80-
"Use of group skip will be deprecated in MFTF 3.0.0. Please update tests to use skip tags.",
81-
["test" => $filename]
82-
);
83-
}
78+
LoggingUtil::getInstance()->getLogger(AnnotationExtractor::class)->warning(
79+
"Use of group skip will be deprecated in MFTF 3.0.0. Please update tests to use skip tags.",
80+
["test" => $filename]
81+
);
8482
}
8583

8684
$annotationObjects[$annotationKey] = $annotationValues;

0 commit comments

Comments
 (0)