Skip to content

Commit 58bc53a

Browse files
committed
Fix unit test
1 parent 0af33d8 commit 58bc53a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sqliter-driver/src/nativeCommonMain/kotlin/co/touchlab/sqliter/native/NativeDatabaseManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ class NativeDatabaseManager(private val path:String,
103103
// the same time) are completely separate databases.
104104
//
105105
// If this is the case, do not increment newConnection so that
106-
// this if block executes on every new connection (i.e. ever new
106+
// this if block executes on every new connection (i.e. every new
107107
// ephemeral database).
108108
when (path) {
109109
"", ":memory:" -> {}

sqliter-driver/src/nativeCommonTest/kotlin/co/touchlab/sqliter/DatabaseManagerTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class DatabaseManagerTest : BaseDatabaseTest(){
120120

121121
val conf = DatabaseConfiguration(
122122
name = "",
123-
inMemory = true,
123+
inMemory = false,
124124
version = 1,
125125
create = { db ->
126126
creationCount++

0 commit comments

Comments
 (0)