Skip to content

Commit

Permalink
refactor: fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
123liuziming committed Oct 22, 2023
1 parent 982569c commit 8c5b87b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ void gatewayRouteMappingTest() {
}

@Test
void gatewayRandomUUIDRouteMappingTest() {
void gatewayRandomUuidRouteMappingTest() {
String requestBody = "gateway";
AggregatedHttpResponse response = client.post("/uuid/echo", requestBody).aggregate().join();
assertThat(response.status().code()).isEqualTo(200);
Expand All @@ -94,7 +94,7 @@ void gatewayRandomUUIDRouteMappingTest() {
}

@Test
void gatewayFakeUUIDRouteMappingTest() {
void gatewayFakeUuidRouteMappingTest() {
String requestBody = "gateway";
AggregatedHttpResponse response = client.post("/fake/echo", requestBody).aggregate().join();
assertThat(response.status().code()).isEqualTo(200);
Expand Down

0 comments on commit 8c5b87b

Please sign in to comment.