]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
update for new behavior
authorAlan T. DeKok <aland@freeradius.org>
Mon, 2 Oct 2023 12:32:48 +0000 (08:32 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Mon, 2 Oct 2023 12:32:48 +0000 (08:32 -0400)
src/tests/keywords/expr-acct

index 7611901fd139a83184f0a4e777ef635da0d439d3..1ed91562ddad598d5d0a48fe53e71f9c3d822424 100644 (file)
@@ -1,10 +1,12 @@
+uint64 input
+
 #
 #  PRE: if edit
 #
 
-&Tmp-String-0 := "%{((uint64)&Acct-Input-Gigawords << 32) | (uint64)&Acct-Input-Octets}"
+&input := %{((uint64)&Acct-Input-Gigawords << 32) | (uint64)&Acct-Input-Octets}
 
-if (!(&Tmp-String-0 == '')) {
+if !(&input == 0) {
        test_fail
 }