From e9884522ea95a5000b6fc4e75c8a2bb23b0ac0b5 Mon Sep 17 00:00:00 2001 From: Samuel Georges Date: Thu, 27 Jul 2017 14:01:27 +1000 Subject: [PATCH] Missing forward slash --- tests/bootstrap.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 34b02df34..5ed3e1296 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -10,8 +10,8 @@ require __DIR__ . '/../bootstrap/autoload.php'; */ $loader = new October\Rain\Support\ClassLoader( new October\Rain\Filesystem\Filesystem, - __DIR__ . '../', - __DIR__ . '../storage/framework/classes.php' + __DIR__ . '/../', + __DIR__ . '/../storage/framework/classes.php' ); $loader->register();