diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-20 12:47:23 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-20 12:47:23 +0200 |
commit | 72e1a8d83b3a21875cac6948879471661d120c52 (patch) | |
tree | df2d9ff58e46150e84a1f66976e8eeb39844911b /tests | |
parent | 3324495a7882cb7957c5ffd498b1b6275a192b32 (diff) | |
download | nextcloud-server-72e1a8d83b3a21875cac6948879471661d120c52.tar.gz nextcloud-server-72e1a8d83b3a21875cac6948879471661d120c52.zip |
fixing require to Pimple
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/appframework/AppTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/appframework/AppTest.php b/tests/lib/appframework/AppTest.php index 000094d07c8..6e647f68e6f 100644 --- a/tests/lib/appframework/AppTest.php +++ b/tests/lib/appframework/AppTest.php @@ -29,7 +29,7 @@ use OC\AppFramework\Core\API; use OC\AppFramework\Middleware\MiddlewareDispatcher; // FIXME: loading pimpl correctly from 3rdparty repo -require_once __DIR__ . '/../../../../3rdparty/Pimple/Pimple.php'; +require_once __DIR__ . '/../../../3rdparty/Pimple/Pimple.php'; require_once __DIR__ . "/classloader.php"; |