Add missing test for AppMigration06

This commit is contained in:
Benoit Marty
2024-09-06 11:51:59 +02:00
parent c51d098679
commit 9693a248f7
2 changed files with 62 additions and 1 deletions

View File

@@ -24,6 +24,7 @@ fun aSessionData(
sessionId: SessionId = SessionId("@alice:server.org"),
isTokenValid: Boolean = false,
sessionPath: String = "/a/path/to/a/session",
cachePath: String = "/a/path/to/a/cache",
): SessionData {
return SessionData(
userId = sessionId.value,
@@ -38,6 +39,6 @@ fun aSessionData(
loginType = LoginType.UNKNOWN,
passphrase = null,
sessionPath = sessionPath,
cachePath = "/a/path/to/a/cache",
cachePath = cachePath,
)
}