From ec1baff6f3747ab165a6521a72881ec2bab6428e Mon Sep 17 00:00:00 2001 From: Maxim Chireychik Date: Mon, 5 Aug 2024 15:42:22 +0300 Subject: [PATCH] UDP-11072 re-enable test --- .../odata/client/caller/MockController.java | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/odata_client/src/test/java/com/sdl/odata/client/caller/MockController.java b/odata_client/src/test/java/com/sdl/odata/client/caller/MockController.java index 27852419..cb16c760 100644 --- a/odata_client/src/test/java/com/sdl/odata/client/caller/MockController.java +++ b/odata_client/src/test/java/com/sdl/odata/client/caller/MockController.java @@ -1,12 +1,12 @@ /** * Copyright (c) 2014-2024 All Rights Reserved by the RWS Group for and on behalf of its affiliates and subsidiaries. - * + *

* Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * + *

+ * http://www.apache.org/licenses/LICENSE-2.0 + *

* Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -15,28 +15,28 @@ */ package com.sdl.odata.client.caller; -import java.io.IOException; -import java.io.InputStream; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; -import org.springframework.stereotype.Component; +import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; +import java.io.IOException; +import java.io.InputStream; + import static java.nio.charset.StandardCharsets.UTF_8; import static org.springframework.util.StreamUtils.copyToString; /** * MockController. */ -@Component -@RequestMapping("/") +@Controller class MockController { private static final String RESPONSE = "response.xml"; @RequestMapping(value = "{code:\\d{3}}") - ResponseEntity respondWithCode(@PathVariable int code) throws IOException { + ResponseEntity respondWithCode(@PathVariable("code") int code) throws IOException { return ResponseEntity.status(HttpStatus.valueOf(code)).body(String.valueOf(code)); }