From 0cf181777c69bef988ef8c70cc124316bb36e7b6 Mon Sep 17 00:00:00 2001 From: Antonis Geralis Date: Wed, 10 May 2023 19:49:10 +0300 Subject: [PATCH] fix test on devel --- tests/tcustom.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tcustom.nim b/tests/tcustom.nim index 647d8bf..01e0114 100644 --- a/tests/tcustom.nim +++ b/tests/tcustom.nim @@ -69,7 +69,7 @@ proc mutateMatrix32[M, N: static[int]](value: sink Matrix32[M, N]; r: var Rand): proc mutate[M, N: static[int]](value: var Matrix32[M, N]; sizeIncreaseHint: int; enforceChanges: bool; r: var Rand) = repeatMutate(mutateMatrix32(move value, r)) -func fuzzTarget(x: Matrix32[2, 1]) = +proc fuzzTarget(x: Matrix32[2, 1]) = doAssert x != ones(2, 1) defaultMutator(fuzzTarget)