summaryrefslogtreecommitdiff
path: root/tests/Unit/Database/DbTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Database/DbTest.php')
-rw-r--r--tests/Unit/Database/DbTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Unit/Database/DbTest.php b/tests/Unit/Database/DbTest.php
index 4529cd6b..63607cad 100644
--- a/tests/Unit/Database/DbTest.php
+++ b/tests/Unit/Database/DbTest.php
@@ -19,7 +19,7 @@ class DbTest extends TestCase
$result = Db::connect('mysql:host=localhost;dbname=someTestDatabaseThatDoesNotExist;charset=utf8');
$this->assertFalse($result);
- $result = Db::connect('sqlite::memory');
+ $result = Db::connect('sqlite::memory:');
$this->assertTrue($result);
}