mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-06 07:23:10 +00:00
remove unneeded exception from start raises
This commit is contained in:
parent
2659913c2d
commit
58b70a5ee3
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user