From 6dfb94b3753dee6a628c95ec2674f3d890a2b9a5 Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Wed, 29 May 2013 14:06:09 -0400 Subject: [PATCH] supress stupid error on bad connection test --- tests/core/db_qb_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/db_qb_test.php b/tests/core/db_qb_test.php index 87febed..a82e6a0 100644 --- a/tests/core/db_qb_test.php +++ b/tests/core/db_qb_test.php @@ -631,7 +631,7 @@ abstract class QBTest extends UnitTestCase { $this->expectException('BadConnectionException'); - $this->db = Query($params); + $this->db = @Query($params); } }