Add missing test for AppMigration06

This commit is contained in:
Benoit Marty 2024-09-06 11:51:59 +02:00
parent 56fd455d44
commit 9d91cc6184
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,
)
}