Skip to content

Commit 37b40ce

Browse files
radhguptaCopilot
andcommitted
style: format client-initialization.test.ts
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent c7eb10a commit 37b40ce

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

packages/http-client-csharp/emitter/test/Unit/client-initialization.test.ts

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -156,15 +156,11 @@ describe("ClientInitialization", () => {
156156
ok(client.parameters, "Client should have parameters");
157157

158158
// Find the method parameter with paramAlias
159-
const blobParam = client.parameters.find(
160-
(p) => p.kind === "method" && p.name === "blob",
161-
) as InputMethodParameter | undefined;
159+
const blobParam = client.parameters.find((p) => p.kind === "method" && p.name === "blob") as
160+
| InputMethodParameter
161+
| undefined;
162162
ok(blobParam, "Should have a 'blob' method parameter");
163-
strictEqual(
164-
blobParam.paramAlias,
165-
"blobName",
166-
"paramAlias should be 'blobName'",
167-
);
163+
strictEqual(blobParam.paramAlias, "blobName", "paramAlias should be 'blobName'");
168164
});
169165

170166
it("should not include paramAlias when @paramAlias is not used", async () => {

0 commit comments

Comments
 (0)