diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2026-08-24 22:29:42 +0200 |
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2026-08-24 22:46:29 +0200 |
| commit | 24f39540d34c819c7870adce9f363af704c7cda7 (patch) | |
| tree | 9caf2c06377651f98b06174f5e5caf452319a8e6 /src/TestMode.hs | |
| parent | a44406e96d17790a82708b36f8214b4b58d44ac6 (diff) | |
Data type for fully-qualified test name
Diffstat (limited to 'src/TestMode.hs')
| -rw-r--r-- | src/TestMode.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/TestMode.hs b/src/TestMode.hs index 22d8237..4d8c767 100644 --- a/src/TestMode.hs +++ b/src/TestMode.hs @@ -163,5 +163,5 @@ cmdRun = do Right tests -> do forM_ tests $ \test -> do res <- runSingleTest test - cmdOut $ "run-test-result " <> testName test <> " " <> (if res then "done" else "failed") + cmdOut $ "run-test-result " <> testNameBase (testName test) <> " " <> (if res then "done" else "failed") cmdOut "run-done" |