From 249179d922a01a1d335af0f8ff13f23352ca3a44 Mon Sep 17 00:00:00 2001 From: allaun Date: Tue, 30 Jun 2026 18:30:57 -0500 Subject: [PATCH] fix(octave): rename check() param to avoid shadowing built-in cond() --- octave/test_avm.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/octave/test_avm.m b/octave/test_avm.m index d44e95a2..9175f9dd 100644 --- a/octave/test_avm.m +++ b/octave/test_avm.m @@ -1,8 +1,8 @@ % AVM ISA v1 — Octave/MATLAB Test Harness % Run with: cd octave && octave --no-gui test_avm.m -function check(cond, msg) - if cond; fprintf(stdout, " ✅ %s\n", msg); +function check(result, msg) + if result; fprintf(stdout, " ✅ %s\n", msg); else; fprintf(stdout, " ❌ %s\n", msg); end end