We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55a8e76 commit c9aac14Copy full SHA for c9aac14
tests/sqlite/sqlite3Test.php
@@ -78,12 +78,8 @@ public function testDisconnect()
78
*/
79
public function testConnect()
80
{
81
- $this->assertTrue($this->object->connect());
82
-
83
- $this->expectExceptionMessageRegExp('/Unable to open database/');
84
- $this->assertTrue($this->object->connect(' ', ' '));
85
86
- $this->assertTrue($this->object->connect(self::TEST_SQLITE_DB_DIR, self::TEST_SQLITE_DB));
+ $this->assertTrue($this->object->connect());
+ $this->assertTrue($this->object->isConnected());
87
} // testSQLiteConnect
88
89
/**
0 commit comments