From 316c62ff1038faa62e4ed5fc3c8c82347d277e4c Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Fri, 4 Apr 2014 15:47:15 +0200 Subject: [PATCH] fix test for 9.3+ --- tests/trans001.phpt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/trans001.phpt b/tests/trans001.phpt index 0524cff..5361798 100644 --- a/tests/trans001.phpt +++ b/tests/trans001.phpt @@ -11,7 +11,9 @@ include "_setup.inc"; $c = new pq\Connection(PQ_DSN); $c->exec("DROP TABLE IF EXISTS test"); $c->on(pq\Connection::EVENT_NOTICE, function($c, $notice) { - echo "Got notice: $notice\n"; + if ($notice !== 'CREATE TABLE will create implicit sequence "test_id_seq" for serial column "test.id"') { + echo "Got notice: $notice\n"; + } }); var_dump($c->transactionStatus == pq\Connection::TRANS_IDLE); $t = new pq\Transaction($c); @@ -35,7 +37,6 @@ Test bool(true) bool(true) Got notice: NOTICE: table "test" does not exist, skipping -Got notice: NOTICE: CREATE TABLE will create implicit sequence "test_id_seq" for serial column "test.id" 1 => a 2 => b 3 => c -- 2.30.2