From 76d2fad11c9fabb1d8bf0b98011d0d94bd76de2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Mon, 4 Mar 2024 13:11:19 -0800 Subject: [PATCH] Fix function names in test example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eaf0123..f5e4a70 100644 --- a/README.md +++ b/README.md @@ -71,8 +71,8 @@ end data TestRun: test(run, active) end [list: - test(foo true), - test(bar, false), + test(foo-returns-1, true), + test(bar-returns-2, false), ].each(lam(t): when t.active: t.run() end end) ```