Skip to content

Commit

Permalink
fix(template-generator): fix code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
markfarkas-camunda committed Jan 29, 2025
1 parent 4f6f0f8 commit e16cb61
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ void generateFromRawYamlContent() {
@Test
void generateFromRawYamlContentWithoutServerDescription() {
// given
try (var openApiYamlContent = new FileInputStream("src/test/resources/example-without-server-description.yaml")) {
try (var openApiYamlContent =
new FileInputStream("src/test/resources/example-without-server-description.yaml")) {
byte[] b = new byte[openApiYamlContent.available()];
if (openApiYamlContent.read(b) == -1) {
throw new RuntimeException("Failed to read yaml file!");
Expand Down

0 comments on commit e16cb61

Please sign in to comment.