From b048cdad523354656eb473ca24077a491290a191 Mon Sep 17 00:00:00 2001 From: mirko-pagliai Date: Fri, 21 Sep 2018 15:05:39 +0200 Subject: [PATCH] fixed test0 --- tests/TestCase/Utility/LinkScannerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestCase/Utility/LinkScannerTest.php b/tests/TestCase/Utility/LinkScannerTest.php index 029d48b..a12c8d3 100644 --- a/tests/TestCase/Utility/LinkScannerTest.php +++ b/tests/TestCase/Utility/LinkScannerTest.php @@ -148,8 +148,8 @@ public function testExport() //Filename can be `null`, relative or absolute foreach ([ null => TMP . 'results_' . $this->LinkScanner->hostname . '_' . $this->LinkScanner->startTime, - 'result_scan' => TMP . 'result_scan', - TMP . 'result_scan' => TMP . 'result_scan', + 'example' => TMP . 'example', + TMP . 'example' => TMP . 'example', ] as $filenameWhereToExport => $expectedFilename) { $result = $this->LinkScanner->export($filenameWhereToExport); $this->assertFileExists($result);