Skip to content

Commit f89b4ec

Browse files
Reintroduce extra newline after protocol tests
1 parent 229e2f0 commit f89b4ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/HttpProtocolTestGenerator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -799,9 +799,9 @@ private void openTestBlock(
799799
) {
800800
// Skipped tests are still generated, just not run.
801801
if (testFilter.skip(service, operation, testCase, settings)) {
802-
writer.openBlock("it.skip($S, async() => {", "});", testName, f);
802+
writer.openBlock("it.skip($S, async() => {", "});\n", testName, f);
803803
} else {
804-
writer.openBlock("it($S, async () => {", "});", testName, f);
804+
writer.openBlock("it($S, async () => {", "});\n", testName, f);
805805
}
806806
}
807807

0 commit comments

Comments
 (0)