From: Alan T. DeKok Date: Tue, 26 Mar 2024 13:30:08 +0000 (-0400) Subject: remove more tmp-* X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4712d4f5bdbe26788cc0dd563dc7535677f1646a;p=thirdparty%2Ffreeradius-server.git remove more tmp-* --- diff --git a/src/tests/keywords/subrequest-cancel b/src/tests/keywords/subrequest-cancel index 710cbf3a92d..f3eca48ad19 100644 --- a/src/tests/keywords/subrequest-cancel +++ b/src/tests/keywords/subrequest-cancel @@ -1,21 +1,24 @@ +string foo +string bar + # Cancel in subrequest subrequest Access-Request { - &parent.Tmp-String-0 := 'testing' + &parent.foo := 'testing' # Immediately cancel the subrequest %cancel(0) - &parent.Tmp-String-1 := 'should not see me' + &parent.bar := 'should not see me' # We should've been cancelled here test_fail } -if (!(&Tmp-String-0 == 'testing')) { +if (!(&foo == 'testing')) { test_fail } -if (&Tmp-String-1 == 'should not see me') { +if (&bar == 'should not see me') { test_fail } success