From 75c630951c4a3266da866b6fe31a05e0dd4f4daf Mon Sep 17 00:00:00 2001 From: "Jonathan.Wage" Date: Fri, 2 Nov 2007 00:10:28 +0000 Subject: [PATCH] Fixed test case. --- tests/Import/SchemaTestCase.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/Import/SchemaTestCase.php b/tests/Import/SchemaTestCase.php index 12d8058c0..a47a39bca 100644 --- a/tests/Import/SchemaTestCase.php +++ b/tests/Import/SchemaTestCase.php @@ -37,16 +37,16 @@ class Doctrine_Import_Schema_TestCase extends Doctrine_UnitTestCase $import = new Doctrine_Import_Schema(); $import->importSchema('schema.yml', 'yml', 'classes'); - if ( ! file_exists('classes/User.class.php')) { + if ( ! file_exists('classes/User.php')) { $this->fail(); } else { - unlink('classes/User.class.php'); + unlink('classes/User.php'); } - if ( ! file_exists('classes/Group.class.php')) { + if ( ! file_exists('classes/Group.php')) { $this->fail(); } else { - unlink('classes/Group.class.php'); + unlink('classes/Group.php'); } } } \ No newline at end of file