From: Alan T. DeKok Date: Sat, 1 Feb 2025 14:24:12 +0000 (-0500) Subject: remove '&' again X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a0739d4ffb680ef24652aaaa9fa66ae7ebf67cd;p=thirdparty%2Ffreeradius-server.git remove '&' again --- diff --git a/src/tests/modules/rest/rest_xlat.unlang b/src/tests/modules/rest/rest_xlat.unlang index 113171069ca..e96b7689c51 100644 --- a/src/tests/modules/rest/rest_xlat.unlang +++ b/src/tests/modules/rest/rest_xlat.unlang @@ -75,7 +75,7 @@ if (!(control.User-Name[0] == 'Bob') || !(control.User-Name[1] == 'dummy')) { test_fail } -test_string := %json.encode('&request.NAS-IP-Address') +test_string := %json.encode('request.NAS-IP-Address') # POST to https with JSON body data result_string := %rest('POST', "https://%{server_host}:%uri.safe(%{server_ssl_port})/user/%{User-Name}/mac/%{Called-Station-Id}?section=accounting", %{test_string})