Skip to content

Commit fafe5cd

Browse files
committed
MFTF 3.12.5 release
1 parent f162f95 commit fafe5cd

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
Magento Functional Testing Framework Changelog
22
================================================
3+
3.12.5
4+
---------
5+
6+
### Fixes
7+
* Provided support for 7.4 and above
38

49
3.12.4
510
---------

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/magento2-functional-testing-framework",
33
"description": "Magento2 Functional Testing Framework",
44
"type": "library",
5-
"version": "3.12.4",
5+
"version": "3.12.5",
66
"license": "AGPL-3.0",
77
"keywords": ["magento", "automation", "functional", "testing"],
88
"config": {

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

etc/config/command.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
try {
3232
$process->run();
3333
$output = $process->getOutput();
34-
echo $output;
3534
if (!$process->isSuccessful()) {
3635
$failureOutput = $process->getErrorOutput();
3736
if (!empty($failureOutput)) {
@@ -48,7 +47,6 @@
4847
}
4948

5049
if (checkForFilePath($output)) {
51-
echo __LINE__.$output;
5250
$output = "CLI output suppressed, filepath detected in output.";
5351
}
5452

src/Magento/FunctionalTestingFramework/DataTransport/Protocol/CurlTransport.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,6 @@ public function write($url, $body = [], $method = CurlInterface::POST, $headers
170170
public function read($successRegex = null, $returnRegex = null, $returnIndex = null)
171171
{
172172
$response = curl_exec($this->getResource());
173-
print_r($response);
174173
if ($response === false) {
175174
throw new TestFrameworkException(curl_error($this->getResource()));
176175
}

src/Magento/FunctionalTestingFramework/Module/MagentoWebDriver.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -571,9 +571,6 @@ public function magentoCLI($command, $timeout = null, $arguments = null)
571571
);
572572

573573
$executor = new CurlTransport();
574-
echo "api url".$apiURL;
575-
echo "token ".WebApiAuth::getAdminToken();
576-
echo "arguments" .$arguments;
577574
$executor->write(
578575
$apiURL,
579576
[

0 commit comments

Comments
 (0)