diff --git a/tests/TestCase/Database/ConnectionTest.php b/tests/TestCase/Database/ConnectionTest.php index ab4f80696b6..8362fcfd382 100644 --- a/tests/TestCase/Database/ConnectionTest.php +++ b/tests/TestCase/Database/ConnectionTest.php @@ -65,7 +65,7 @@ public function testConnect() { * Tests creating a connection using no driver throws an exception * * @expectedException \Cake\Database\Error\MissingDriverException - * @expectedExceptionMessage Database driver "" could not be found. + * @expectedExceptionMessage Database driver could not be found. * @return void */ public function testNoDriver() { @@ -76,7 +76,7 @@ public function testNoDriver() { * Tests creating a connection using an invalid driver throws an exception * * @expectedException \Cake\Database\Error\MissingDriverException - * @expectedExceptionMessage Database driver "" could not be found. + * @expectedExceptionMessage Database driver could not be found. * @return void */ public function testEmptyDriver() { @@ -87,7 +87,7 @@ public function testEmptyDriver() { * Tests creating a connection using an invalid driver throws an exception * * @expectedException \Cake\Database\Error\MissingDriverException - * @expectedExceptionMessage Database driver "\Foo\InvalidDriver" could not be found. + * @expectedExceptionMessage Database driver \Foo\InvalidDriver could not be found. * @return void */ public function testMissingDriver() {