remove unneeded exception from start raises

This commit is contained in:
Eric 2025-03-20 13:39:09 +11:00
parent 2659913c2d
commit 58b70a5ee3
No known key found for this signature in database

View File

@ -699,7 +699,7 @@ proc withBorder(
if borders.contains(Border.Right):
result &= " |"
proc printResult(manager: TestManager) {.raises: [TestManagerError].} =
proc printResult(manager: TestManager) =
var successes = 0
var totalDurationSerial: Duration
echo ""
@ -753,7 +753,7 @@ proc printResult(manager: TestManager) {.raises: [TestManagerError].} =
proc start*(
manager: TestManager
) {.async: (raises: [CancelledError, TestManagerError]).} =
) {.async: (raises: [CancelledError]).} =
if manager.config.showContinuousStatusUpdates:
let fut = manager.continuallyShowUpdates()
manager.trackedFutures.track fut