Skip to content

Commit

Permalink
test: fix result
Browse files Browse the repository at this point in the history
  • Loading branch information
ddevsr committed Aug 14, 2024
1 parent 85c20ab commit d276732
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/SecureTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ final class SecureTest extends TestCase
/**
* Folder Support
*/
private static string $folderSupport = '';
private static string $folderSupport = './tests/_support/';

/**
* Result of Test
Expand All @@ -32,7 +32,11 @@ final class SecureTest extends TestCase

protected function setUp(): void
{
self::$folderSupport = './tests/_support/';
self::$folderSupportResult = self::$folderSupport . 'result/';
}

protected function tearDown(): void
{
self::$folderSupportResult = self::$folderSupport . 'result/';

if (is_file(self::$folderSupportResult . 'result.xlsx')) {
Expand Down

0 comments on commit d276732

Please sign in to comment.