From 7477102a6072d7e0908560efeb858ef725f55675 Mon Sep 17 00:00:00 2001 From: Jani Taskinen Date: Sat, 25 Apr 2009 21:44:20 +0000 Subject: [PATCH] - Fix cleanup --- ext/pdo_sqlite/tests/bug46542.phpt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ext/pdo_sqlite/tests/bug46542.phpt b/ext/pdo_sqlite/tests/bug46542.phpt index ccde633dc7..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:dummy.db'); +$a = new A('sqlite:' . __DIR__ . '/dummy.db'); $a->truc(); $a->TRUC(); +?> +--CLEAN-- + --EXPECT-- A::truc -- 2.50.1