Skip to content

Commit

Permalink
Test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrVakhtinTari committed Oct 4, 2023
1 parent 19361fa commit 4b0657c
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ import com.tari.android.wallet.data.sharedPrefs.SharedPrefsRepository
import com.tari.android.wallet.data.sharedPrefs.baseNode.BaseNodeSharedRepository
import com.tari.android.wallet.data.sharedPrefs.network.NetworkRepositoryImpl
import com.tari.android.wallet.data.sharedPrefs.securityStages.SecurityStagesRepository
import com.tari.android.wallet.data.sharedPrefs.sentry.SentryPrefRepository
import com.tari.android.wallet.data.sharedPrefs.tariSettings.TariSettingsSharedRepository
import com.tari.android.wallet.data.sharedPrefs.tor.TorSharedRepository
import com.tari.android.wallet.di.ApplicationModule
Expand Down Expand Up @@ -77,6 +78,7 @@ class FFIWalletTests {
private val tariSettingsRepository = TariSettingsSharedRepository(prefs, networkRepository)
private val securityStagesRepository = SecurityStagesRepository(prefs, networkRepository)
private val contactSharedPrefRepository = ContactSharedPrefRepository(networkRepository, prefs)
private val sentryPrefRepository: SentryPrefRepository = SentryPrefRepository(prefs, networkRepository)
private val torSharedRepository = TorSharedRepository(prefs, networkRepository)
private val sharedPrefsRepository = SharedPrefsRepository(
context,
Expand All @@ -88,7 +90,8 @@ class FFIWalletTests {
torSharedRepository,
tariSettingsRepository,
securityStagesRepository,
contactSharedPrefRepository
contactSharedPrefRepository,
sentryPrefRepository
)

private val walletDirPath = context.filesDir.absolutePath
Expand Down

0 comments on commit 4b0657c

Please sign in to comment.