Skip to content

Commit

Permalink
Fix testout directory for xmls which were generated during unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
HorstOeko committed Nov 8, 2024
1 parent b5c0a46 commit 7ac856b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ _backup*
/build/phpdox/
/build/phpdoc/
/build/xmlresults/
/build/generated/
/*.phar
/composer.lock
/examples/*.xml
Expand Down
2 changes: 1 addition & 1 deletion tests/traits/HandlesXmlTests.php
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ public function debugWriteFile(): void
public function saveFinalXmlToBuildResults(string $filename)
{
$buildDir = dirname(__FILE__) . '/../../build';
$buildXmlResultDir = $buildDir . '/xmlresults';
$buildXmlResultDir = $buildDir . '/generated';

if (!is_dir($buildXmlResultDir)) {
@mkdir($buildXmlResultDir);
Expand Down

0 comments on commit 7ac856b

Please sign in to comment.