Skip to content

Commit aea7e8d

Browse files
committed
MQE-1713: Generate/run test in single suite contex
- Fixed wrong comparison
1 parent 995016a commit aea7e8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Magento/FunctionalTestingFramework/Console/BaseGenerateCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ protected function getTestAndSuiteConfiguration(array $tests)
8787
$suiteToTestPair = [];
8888

8989
foreach($tests as $test) {
90-
if (strpos($test, ':') !== null) {
90+
if (strpos($test, ':') !== false) {
9191
$suiteToTestPair[] = $test;
9292
continue;
9393
}

0 commit comments

Comments
 (0)