Skip to content

Commit

Permalink
refactor: test를 위한 code 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
minsu11 committed Feb 18, 2024
1 parent a60d8f0 commit acac10b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
public class TestController {
private final TestService testService;

@GetMapping("/api/orders-statuses")
@GetMapping("/test")
public ResponseEntity<String> test() {
List<Response> data = testService.getTestResult();
return new ResponseEntity<>(data.get(0).toString(), HttpStatus.OK);
return new ResponseEntity<>("ok", HttpStatus.OK);
}

}
2 changes: 2 additions & 0 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
server.port=8080
logging.level.root=debug

0 comments on commit acac10b

Please sign in to comment.