Browse Source

fixing test

antograssiot 11 years ago
parent
commit
02fae338c0
1 changed files with 3 additions and 3 deletions
  1. 3 3
      tests/TestCase/Database/ConnectionTest.php

+ 3 - 3
tests/TestCase/Database/ConnectionTest.php

@@ -65,7 +65,7 @@ class ConnectionTest extends TestCase {
  * 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 @@ class ConnectionTest extends TestCase {
  * 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 @@ class ConnectionTest extends TestCase {
  * 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() {