When running tests with bild --test Biz/**/*.hs, verbose "pass:" lines are printed for each test. The user wants only the checkmark icon (✓) that's already used for successful builds, not the separate "pass:" label.
In Omni/Bild.hs lines 1142-1143 and 1152-1153:
onSuccess = Log.pass ["test", nschunk namespace] >> Log.br
This calls Log.pass which outputs "pass: test: Namespace" (from Omni/Log.hs:77).
Test success should update the LineManager status to Success (showing ✓) instead of printing a separate "pass:" line. This keeps output consistent with build success.
1. In the test function (Omni/Bild.hs), change onSuccess to call LogC.updateLineState namespace LogC.Success instead of Log.pass
2. Remove the Log.br calls since LineManager handles newlines
3. For loud mode, keep Log.pass behavior for compatibility
Run bild --test Omni/Test.hs and verify:
No activity yet.