From b14c01f4e9e1fd407a24febeac4cf8fba3397922 Mon Sep 17 00:00:00 2001 From: Helmut Merz Date: Mon, 16 Jun 2025 10:54:27 +0200 Subject: [PATCH] explicit become also in test: probe neuron --- test-asys.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-asys.lisp b/test-asys.lisp index 7c89886..3a8e918 100644 --- a/test-asys.lisp +++ b/test-asys.lisp @@ -5,7 +5,7 @@ (defun probe (msg state syns env) (let ((t:*test-suite* env)) (== (actor:content msg) (pop state)) - (lambda (msg) (probe msg state syns env)) + (actor:become (lambda (msg) (probe msg state syns env))) )) (defun test-asys ()