From 49a2fb5272d3c73875568fc9cb4fab8e1b8660ca Mon Sep 17 00:00:00 2001 From: Simon Marquis Date: Sat, 16 Sep 2023 15:39:51 +0100 Subject: [PATCH] Fix wrong configuration name, leaking `work-testing` to runtime classpath Typo introduced recently when Roborazzi was added to the project: https://github.com/android/nowinandroid/commit/886158d3cb9c7271bdf46241addc4db694174473#diff-8cff73265af19c059547b76aca8882cbaa3209291406f52df1dafbbc78e80c46 --- app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 81947e641..f1ea598d7 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -128,8 +128,8 @@ dependencies { testImplementation(project(":core:network")) testImplementation(libs.androidx.navigation.testing) testImplementation(libs.accompanist.testharness) + testImplementation(libs.work.testing) testImplementation(kotlin("test")) - implementation(libs.work.testing) kaptTest(libs.hilt.compiler) }