Skip to content

Commit 598807c

Browse files
committed
fix(codegen): checkstyle errors
1 parent 246bc07 commit 598807c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/protocols/SmithyProtocolUtils.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ private static boolean filterProtocolTests(
7676
}
7777

7878
// TODO(cbor): enable test when it's working with vitest 3.x
79-
if (settings.generateSchemas() &&
80-
(testCase.getId().equals("RpcV2CborInvalidGreetingError") ||
81-
testCase.getId().equals("RpcV2CborComplexError") ||
82-
testCase.getId().equals("RpcV2CborEmptyComplexError"))) {
79+
if (settings.generateSchemas()
80+
&& (testCase.getId().equals("RpcV2CborInvalidGreetingError")
81+
|| testCase.getId().equals("RpcV2CborComplexError")
82+
|| testCase.getId().equals("RpcV2CborEmptyComplexError"))) {
8383
return true;
8484
}
8585

0 commit comments

Comments
 (0)