From: Alan T. DeKok Date: Wed, 11 Oct 2023 14:37:50 +0000 (-0400) Subject: just use the right comparison X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=196f9015f7df0caf142a9bd4fcd5a29d0d93ec84;p=thirdparty%2Ffreeradius-server.git just use the right comparison --- diff --git a/src/tests/modules/redis/functions.unlang b/src/tests/modules/redis/functions.unlang index 6b420184313..5f53e7dae42 100644 --- a/src/tests/modules/redis/functions.unlang +++ b/src/tests/modules/redis/functions.unlang @@ -37,7 +37,7 @@ if (!(%(redis.multiline:0 1) == 1)) { } # Bad call -if (%(redis.multiline:10) != '') { +if %redis.multiline(10) { test_fail }