diff options
| author | Albin <albin@mullvad.net> | 2022-05-20 14:26:22 +0200 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2022-05-20 14:37:50 +0200 |
| commit | 1080dabd122d9a67f5ef5260c7731639a0535646 (patch) | |
| tree | a0146b7d4cb095a8dde8c3ad7b022de52be5c8eb /android/app/src/test | |
| parent | 9d2ceab94ce1e67140bfc4e34bf5ca9d980304d5 (diff) | |
| download | mullvadvpn-1080dabd122d9a67f5ef5260c7731639a0535646.tar.xz mullvadvpn-1080dabd122d9a67f5ef5260c7731639a0535646.zip | |
Rename Android UI DI module
Rename the UI specific DI module to avoid potential confusion with the
Application class.
Diffstat (limited to 'android/app/src/test')
| -rw-r--r-- | android/app/src/test/kotlin/net/mullvad/mullvadvpn/di/UiModuleTest.kt (renamed from android/app/src/test/kotlin/net/mullvad/mullvadvpn/di/AppModuleTest.kt) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/android/app/src/test/kotlin/net/mullvad/mullvadvpn/di/AppModuleTest.kt b/android/app/src/test/kotlin/net/mullvad/mullvadvpn/di/UiModuleTest.kt index c30a63fedf..92ffd792a0 100644 --- a/android/app/src/test/kotlin/net/mullvad/mullvadvpn/di/AppModuleTest.kt +++ b/android/app/src/test/kotlin/net/mullvad/mullvadvpn/di/UiModuleTest.kt @@ -16,11 +16,11 @@ import org.koin.core.scope.Scope import org.koin.test.KoinTest import org.koin.test.KoinTestRule -class AppModuleTest : KoinTest { +class UiModuleTest : KoinTest { @get:Rule val koinTestRule = KoinTestRule.create { - modules(appModule) + modules(uiModule) } @After |
