From: Jani Taskinen Date: Sat, 25 Apr 2009 21:44:33 +0000 (+0000) Subject: MFH: Fix cleanup X-Git-Tag: php-5.3.0RC2~97 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eb190a2ef9075645cc2cf9f989426f2a9a8b2c12;p=php MFH: Fix cleanup --- diff --git a/ext/pdo_sqlite/tests/bug46542.phpt b/ext/pdo_sqlite/tests/bug46542.phpt index ba2b68ad75..2de0c05191 100644 --- a/ext/pdo_sqlite/tests/bug46542.phpt +++ b/ext/pdo_sqlite/tests/bug46542.phpt @@ -9,11 +9,15 @@ if (!extension_loaded('pdo_sqlite')) print 'skip not loaded'; class A extends PDO { function __call($m, $p) {print __CLASS__."::$m\n";} } -$a = new A('sqlite:' . __DIR__ . 'dummy.db'); +$a = new A('sqlite:' . __DIR__ . '/dummy.db'); $a->truc(); $a->TRUC(); +?> +--CLEAN-- + --EXPECT-- A::truc