Skip to content

Commit 552e4d6

Browse files
authored
test: update test code comments
1 parent 35e12af commit 552e4d6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

smithy-typescript-codegen/src/test/java/software/amazon/smithy/typescript/codegen/TypeScriptSettingsTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public void resolveServiceProtocol(@Mock Model model,
104104
@Mock ServiceIndex serviceIndex) {
105105
TypeScriptSettings subject = new TypeScriptSettings();
106106

107-
// note: these are mock protocol names.
107+
// these are mock protocol names.
108108
ShapeId rpcv2Cbor = ShapeId.from("namespace#rpcv2Cbor");
109109
ShapeId json1_0 = ShapeId.from("namespace#json1_0");
110110
ShapeId json1_1 = ShapeId.from("namespace#json1_1");
@@ -130,7 +130,7 @@ public void resolveServiceProtocol(@Mock Model model,
130130
json1_0, null
131131
));
132132
ShapeId protocol = subject.resolveServiceProtocol(model, service, protocolShapeIds);
133-
// Note: JS customization JSON higher default priority than CBOR.
133+
// JS customization has JSON at higher default priority than CBOR.
134134
assertEquals(json1_0, protocol);
135135
}
136136

@@ -151,7 +151,7 @@ public void resolveServiceProtocol(@Mock Model model,
151151
query, null
152152
));
153153
ShapeId protocol = subject.resolveServiceProtocol(model, service, protocolShapeIds);
154-
// Note: JS customization JSON higher default priority than CBOR.
154+
// JS customization has JSON at higher default priority than CBOR.
155155
assertEquals(json1_0, protocol);
156156
}
157157

0 commit comments

Comments
 (0)