diff options
author | sybio <clement.guillemain@gmail.com> | 2012-09-21 17:14:25 +0200 |
---|---|---|
committer | sybio <clement.guillemain@gmail.com> | 2012-09-21 17:14:25 +0200 |
commit | b6d9a9387f8166b0f5536c269e8551ba8abc10b8 (patch) | |
tree | 14d4b15b355a77465d08dbc760358e7ed254c424 | |
parent | d8b00170e71b15c1bcd25cb067cc013a28ace179 (diff) | |
download | ImageWorkshop-b6d9a9387f8166b0f5536c269e8551ba8abc10b8.zip ImageWorkshop-b6d9a9387f8166b0f5536c269e8551ba8abc10b8.tar.gz ImageWorkshop-b6d9a9387f8166b0f5536c269e8551ba8abc10b8.tar.bz2 |
- Correction of the "require_once" path to the class
-rw-r--r-- | tests/ImageWorkshopTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ImageWorkshopTest.php b/tests/ImageWorkshopTest.php index 9dff0cb..e1a9849 100644 --- a/tests/ImageWorkshopTest.php +++ b/tests/ImageWorkshopTest.php @@ -1,5 +1,5 @@ <?php
-require_once('../src/PHPImageWorkshop/ImageWorkshop.php');
+require_once(__DIR__.'/../src/PHPImageWorkshop/ImageWorkshop.php');
/**
* ImageWorkshopTest class
|