From 91d16b7e28f3cee0803ccf65e26d0c1009939a50 Mon Sep 17 00:00:00 2001 From: dankito Date: Thu, 12 Sep 2024 13:33:48 +0200 Subject: [PATCH] Updated to new data model --- .../codinux/banking/dataaccess/SqliteBankingRepositoryTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composeApp/src/desktopTest/kotlin/net/codinux/banking/dataaccess/SqliteBankingRepositoryTest.kt b/composeApp/src/desktopTest/kotlin/net/codinux/banking/dataaccess/SqliteBankingRepositoryTest.kt index 6f872c1..3ca806d 100644 --- a/composeApp/src/desktopTest/kotlin/net/codinux/banking/dataaccess/SqliteBankingRepositoryTest.kt +++ b/composeApp/src/desktopTest/kotlin/net/codinux/banking/dataaccess/SqliteBankingRepositoryTest.kt @@ -63,7 +63,7 @@ class SqliteBankingRepositoryTest { assertEquals(bankAccounts.first().balance, persistedBankAccount.balance) assertEquals(bankAccounts.first().retrievedTransactionsFrom, persistedBankAccount.retrievedTransactionsFrom) - assertEquals(bankAccounts.first().lastTransactionsRetrievalTime, persistedBankAccount.lastTransactionsRetrievalTime) + assertEquals(bankAccounts.first().lastAccountUpdateTime, persistedBankAccount.lastAccountUpdateTime) assertEquals(bankAccounts.first().features, persistedBankAccount.features)