From 1eacf36d81eff52551111b8eddfe3e3285d91f90 Mon Sep 17 00:00:00 2001 From: null Date: Sat, 11 Jul 2026 20:47:59 -0500 Subject: [PATCH] fix(test): HomeContentRenderSmokeTest unclosed-comment (emoji in KDoc broke Kotlin lexer) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The prior commit's androidTest didn't compile — a stop-sign emoji in the KDoc tripped the Kotlin lexer ('Unclosed comment'). Replaced with plain text. App was never affected (androidTest isn't in the APK); this restores connectedAndroidTest. Co-Authored-By: Claude Fable 5 --- .../java/app/closer/ui/home/HomeContentRenderSmokeTest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/androidTest/java/app/closer/ui/home/HomeContentRenderSmokeTest.kt b/app/src/androidTest/java/app/closer/ui/home/HomeContentRenderSmokeTest.kt index 3d72cd28..ed315c63 100644 --- a/app/src/androidTest/java/app/closer/ui/home/HomeContentRenderSmokeTest.kt +++ b/app/src/androidTest/java/app/closer/ui/home/HomeContentRenderSmokeTest.kt @@ -20,8 +20,8 @@ import org.junit.runner.RunWith * cluster (header, status strip, primary card, action feed, pending, category grid). Both light and * dark are covered (Home has decoupled theme art + per-theme colors). * - * ⛔ Run on a THROWAWAY emulator only — connectedDebugAndroidTest uninstalls the app-under-test, - * which WIPES fixture data. Never run against the 5554/5556 fixture couple. + * WARNING: Run on a THROWAWAY emulator only - connectedDebugAndroidTest uninstalls the + * app-under-test, which WIPES fixture data. Never run against the 5554/5556 fixture couple. * ANDROID_SERIAL=emulator-5558 ./gradlew :app:connectedDebugAndroidTest */ @RunWith(AndroidJUnit4::class)