From f3a9b1efc0b9e8d851e07dbe103a714b9584edb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Haso=C5=88?= Date: Thu, 29 Mar 2012 13:26:06 +0200 Subject: [PATCH] Fixed tests on Windows --- tests/Doctrine/Tests/ORM/Proxy/AutoloaderTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Doctrine/Tests/ORM/Proxy/AutoloaderTest.php b/tests/Doctrine/Tests/ORM/Proxy/AutoloaderTest.php index ff5bf0f5b..af0afec35 100644 --- a/tests/Doctrine/Tests/ORM/Proxy/AutoloaderTest.php +++ b/tests/Doctrine/Tests/ORM/Proxy/AutoloaderTest.php @@ -30,9 +30,9 @@ class AutoloaderTest extends OrmTestCase static public function dataResolveFile() { return array( - array('/tmp', 'MyProxy', 'MyProxy\__CG__\RealClass', '/tmp/__CG__RealClass.php'), - array('/tmp', 'MyProxy\Subdir', 'MyProxy\Subdir\__CG__\RealClass', '/tmp/__CG__RealClass.php'), - array('/tmp', 'MyProxy', 'MyProxy\__CG__\Other\RealClass', '/tmp/__CG__OtherRealClass.php'), + array('/tmp', 'MyProxy', 'MyProxy\__CG__\RealClass', '/tmp' . DIRECTORY_SEPARATOR . '__CG__RealClass.php'), + array('/tmp', 'MyProxy\Subdir', 'MyProxy\Subdir\__CG__\RealClass', '/tmp' . DIRECTORY_SEPARATOR . '__CG__RealClass.php'), + array('/tmp', 'MyProxy', 'MyProxy\__CG__\Other\RealClass', '/tmp' . DIRECTORY_SEPARATOR . '__CG__OtherRealClass.php'), ); }