diff options
author | Renu Kumari <renu.kumari@bell.ca> | 2022-04-04 23:36:35 -0400 |
---|---|---|
committer | Renu Kumari <renu.kumari@bell.ca> | 2022-04-05 00:14:12 -0400 |
commit | 80126234d647db40cd439db2179c2a24058fe6c1 (patch) | |
tree | 32582a62f049d11261e4c70fbcfd97ff45f9594f /src/test | |
parent | d43ffca31a576465b4d3660a358abb6e87d97e92 (diff) |
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 <renu.kumari@bell.ca>
Change-Id: I62268d9cf6f48a7b44daea81d7898b0307e41660
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/groovy/org/onap/cps/temporal/controller/rest/QueryControllerSpec.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
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"}'] |