diff options
| author | Ben Sima <ben@bensima.com> | 2025-11-26 06:18:00 -0500 |
|---|---|---|
| committer | Ben Sima <ben@bensima.com> | 2025-11-26 06:18:00 -0500 |
| commit | b59772a5788cea3685a03dbb403b986e768d9bc0 (patch) | |
| tree | ec5b7f3d22e26c0724ca1f5395ba259b42e8bbbd /Omni | |
| parent | 7fc62d7c86e3eab1131081064ede575594024b16 (diff) | |
Fix auto-review to use full namespace path
Task-Id: t-1o2g8gugkr1
Diffstat (limited to 'Omni')
| -rw-r--r-- | Omni/Jr.hs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) |
