From 5360b3de338f2945586ada962ef078ca2e43c5f3 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sun, 1 May 2016 19:25:39 +0200 Subject: fix test if unlink fails occasionally --- ext/pdo_sqlite/tests/bug70221.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/pdo_sqlite') diff --git a/ext/pdo_sqlite/tests/bug70221.phpt b/ext/pdo_sqlite/tests/bug70221.phpt index bead80d233..2d1aea0e8b 100644 --- a/ext/pdo_sqlite/tests/bug70221.phpt +++ b/ext/pdo_sqlite/tests/bug70221.phpt @@ -12,7 +12,7 @@ function _test() { return 42; } $db->sqliteCreateFunction('test', '_test', 0); print("Everything is fine, no exceptions here\n"); unset($db); -unlink($dbfile); +@unlink($dbfile); ?> --EXPECT-- Everything is fine, no exceptions here -- cgit v1.2.1