changed name of JMeter test controller to remove 'test' language from production code

This commit is contained in:
Liam Garvie 2021-02-20 11:13:45 +00:00
parent af040e54c6
commit 0fabae2d65
1 changed files with 2 additions and 2 deletions

View File

@ -9,10 +9,10 @@ import java.util.UUID;
import static java.lang.String.format;
@RestController
public class TestController {
public class RetrieveUuidController {
@GetMapping("/api/test")
public Response test() {
public Response uuid() {
return new Response(format("Test message... %s.", UUID.randomUUID()));
}
}