From: Alan T. DeKok Date: Mon, 9 Jun 2025 19:44:56 +0000 (-0400) Subject: use :=, to force the assignment X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba8a15d769ba929fa7ccc410f95ceeb7cfcfb69c;p=thirdparty%2Ffreeradius-server.git use :=, to force the assignment --- diff --git a/src/tests/keywords/attr-index-eval b/src/tests/keywords/attr-index-eval index d79f7076d7d..4cf4b0d0ac7 100644 --- a/src/tests/keywords/attr-index-eval +++ b/src/tests/keywords/attr-index-eval @@ -19,9 +19,9 @@ if (foo != "b") { test_fail } -ref = "1 + 2" +ref := "1 + 2" -foo = %eval(ref) +foo := %eval(ref) if (foo != 3) { test_fail