Skip to content

Commit

Permalink
Fix code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Nils Stenholm committed Feb 25, 2021
1 parent 5385d8a commit 8bded22
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions nflow-netty/src/test/java/io/nflow/netty/StartNflowTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,7 @@ private void smokeTestRestApi(String restApiPrefix) {
assertTrue(responseBody.isArray());
}

/*
Smoke test for io.nflow.rest.v1.springweb.SpringWebResource#handleExceptions
*/
// Smoke test for io.nflow.rest.v1.springweb.SpringWebResource#handleExceptions
private void smokeTestRestApiErrorHandling(String restApiPrefix) {
ClientResponse response = getFromDefaultServer(restApiPrefix + NFLOW_WORKFLOW_INSTANCE_PATH + "/id/0213132");
assertEquals(NOT_FOUND, response.statusCode());
Expand All @@ -84,6 +82,4 @@ private ClientResponse getFromDefaultServer(String url) {
WebClient client = WebClient.builder().baseUrl(DEFAULT_LOCALHOST_SERVER_ADDRESS).build();
return client.get().uri(url).exchange().block();
}


}

0 comments on commit 8bded22

Please sign in to comment.