diff options
Diffstat (limited to 'tests/UnitTests/framework/common.php')
-rw-r--r-- | tests/UnitTests/framework/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/UnitTests/framework/common.php b/tests/UnitTests/framework/common.php index dc268e28..71d6949e 100644 --- a/tests/UnitTests/framework/common.php +++ b/tests/UnitTests/framework/common.php @@ -17,7 +17,7 @@ class Prado extends PradoBase function __autoload($className)
{
- require_once($className);
+ require_once($className.Prado::CLASS_FILE_EXT);
}
error_reporting(E_ALL);
|