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 558c25a080
commit 780ffd739b

View File

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