Skip to content

Commit 3382442

Browse files
committed
Fixed include issue in tests
1 parent fe8d78e commit 3382442

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/CoreDriverOverride.test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
chdir(__DIR__);
1616
require_once __DIR__ . '/../vendor/autoload.php';
17-
require_once __DIR__ . '/mock/autoload.php';
17+
require_once __DIR__ . '/mock/Autoload.php';
1818
$testHelper = new TestHelper('Core driver override');
1919

2020
if (!class_exists(Phpfastcache\DriverTest\Files2\Item::class)

tests/CustomDriver.test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
chdir(__DIR__);
1515
require_once __DIR__ . '/../vendor/autoload.php';
16-
require_once __DIR__ . '/mock/autoload.php';
16+
require_once __DIR__ . '/mock/Autoload.php';
1717
$testHelper = new TestHelper('Custom driver');
1818

1919
if (!class_exists(Phpfastcache\Drivers\Fakefiles\Item::class)

0 commit comments

Comments
 (0)