← Back to task

Commit b59772a5

commit b59772a5788cea3685a03dbb403b986e768d9bc0
Author: Ben Sima <ben@bensima.com>
Date:   Wed Nov 26 06:18:00 2025

    Fix auto-review to use full namespace path
    
    Task-Id: t-1o2g8gugkr1

diff --git a/Omni/Jr.hs b/Omni/Jr.hs
index a940e828..24fd0f3e 100644
--- a/Omni/Jr.hs
+++ b/Omni/Jr.hs
@@ -262,8 +262,9 @@ autoReview tid task commitSha = do
   putText "Running automated review..."
 
   -- Determine what to test based on namespace
+  -- Keep .hs suffix since bild expects it
   let namespace = fromMaybe "." (TaskCore.taskNamespace task)
-  let testTarget = Text.unpack (Text.replace ".hs" "" namespace)
+  let testTarget = Text.unpack namespace
 
   putText ("Testing: " <> Text.pack testTarget)