summaryrefslogtreecommitdiff
path: root/tests/Unit/Database
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2017-11-01 14:47:09 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2017-11-01 16:12:01 +0100
commitad948bdd3201e922b626a736b0122533bdd37cae (patch)
tree9011a160f3d6f9cae37fc02836e7d6e8c25242ca /tests/Unit/Database
parente727b367cc77452b58bc2d9360bcde97b7572288 (diff)
Added RequestServiceProvider and SessionServiceProvider
Diffstat (limited to 'tests/Unit/Database')
-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);
}