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 070dbeb commit 9d72141Copy full SHA for 9d72141
src/Magento/FunctionalTestingFramework/Test/Handlers/TestObjectHandler.php
@@ -92,10 +92,11 @@ public function getObject($testName)
92
*/
93
public function getAllObjects()
94
{
95
+ $testObjects = [];
96
foreach ($this->tests as $testName => $test) {
- $this->tests[$testName] = $this->extendTest($test);
97
+ $testObjects[$testName] = $this->extendTest($test);
98
}
- return $this->tests;
99
+ return $testObjects;
100
101
102
/**
0 commit comments