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 afe9083 commit e5e8744Copy full SHA for e5e8744
src/Magento/FunctionalTestingFramework/Util/TestManifest.php
@@ -74,7 +74,7 @@ public function recordCest($cestName, $tests)
74
75
foreach ($tests as $test) {
76
$line = $this->relativeDirPath . DIRECTORY_SEPARATOR . $cestName . '.php:' . $test->getName();
77
- fwrite($fileResource, $line . "\n");
+ fwrite($fileResource, $line . PHP_EOL);
78
}
79
80
fclose($fileResource);
@@ -90,7 +90,7 @@ public function recordPathToExportDir()
90
{
91
$fileResource = fopen($this->filePath, 'a');
92
$line = $this->relativeDirPath . DIRECTORY_SEPARATOR;
93
94
95
96
0 commit comments