From 80126234d647db40cd439db2179c2a24058fe6c1 Mon Sep 17 00:00:00 2001 From: Renu Kumari Date: Mon, 4 Apr 2022 23:36:35 -0400 Subject: Upgrade spring boot version to 2.6.4 - Fixed double encoded link generation issue - Removed workaround to handle '+' as fix is available in the spring hateoas 1.4 version Issue-ID: CPS-962 Signed-off-by: Renu Kumari Change-Id: I62268d9cf6f48a7b44daea81d7898b0307e41660 --- .../org/onap/cps/temporal/controller/rest/QueryControllerSpec.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/test/groovy/org/onap') diff --git a/src/test/groovy/org/onap/cps/temporal/controller/rest/QueryControllerSpec.groovy b/src/test/groovy/org/onap/cps/temporal/controller/rest/QueryControllerSpec.groovy index 305a55b..fd81f0f 100644 --- a/src/test/groovy/org/onap/cps/temporal/controller/rest/QueryControllerSpec.groovy +++ b/src/test/groovy/org/onap/cps/temporal/controller/rest/QueryControllerSpec.groovy @@ -135,7 +135,7 @@ class QueryControllerSpec extends Specification { responseBody.getRecords() == [toAnchorDetails(networkData)] where: scenario | endpointName | urlSpecifParams | parameters - 'without observedTimestampAfter and with payloadFilter' | 'anchor by name' | [anchor: myAnchor] | [observedTimestampAfter: null, payloadFilter: null] + 'without observedTimestampAfter and without payloadFilter' | 'anchor by name' | [anchor: myAnchor] | [observedTimestampAfter: null, payloadFilter: null] 'with observedTimestampAfter and without payloadFilter' | 'anchor by name' | [anchor: myAnchor] | [observedTimestampAfter: '2021-07-24T03:00:01.000-0400', payloadFilter: null] 'without observedTimestampAfter and with payloadFilter' | 'anchor by name' | [anchor: myAnchor] | [observedTimestampAfter: null, payloadFilter: '{"message" : "hello+world"}'] 'with observedTimestampAfter and with payloadFilter' | 'anchor by name' | [anchor: myAnchor] | [observedTimestampAfter: '2021-07-24T03:00:01.000+0400', payloadFilter: '{"message" : "hello world"}'] -- cgit 1.2.3-korg