summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKimberly Crevecoeur <kcrevecoeur@google.com>2024-01-29 10:45:04 -0800
committerGitHub <noreply@github.com>2024-01-29 10:45:04 -0800
commit75b6e3fb5fd1dfee19db651d5e428a61c4ad446e (patch)
tree854b9b077883bab9ca038dc32d60ebe7044c1c98
parent85aedba531dbf17488a86d1fcbf233417bfef057 (diff)
downloadjetpack-camera-app-75b6e3fb5fd1dfee19db651d5e428a61c4ad446e.tar.gz
fix dependency issue causing test failures in :data:settings (#103)
-rw-r--r--data/settings/build.gradle.kts3
1 files changed, 1 insertions, 2 deletions
diff --git a/data/settings/build.gradle.kts b/data/settings/build.gradle.kts
index 1b2b9ba..54cbb48 100644
--- a/data/settings/build.gradle.kts
+++ b/data/settings/build.gradle.kts
@@ -56,10 +56,9 @@ dependencies {
// Testing
testImplementation(libs.junit)
implementation(libs.kotlinx.coroutines.core)
- androidTestImplementation(libs.kotlinx.coroutines.core)
+ androidTestImplementation(libs.kotlinx.coroutines.test)
androidTestImplementation(libs.androidx.junit)
androidTestImplementation(libs.androidx.espresso.core)
-
// Hilt
implementation(libs.dagger.hilt.android)
kapt(libs.dagger.hilt.compiler)