Skip to content

Commit 564069f

Browse files
committed
forgot the sort
1 parent 4750322 commit 564069f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/generateCTS.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,9 @@ async function loadCTSForClient(client: string): Promise<CTSBlock[]> {
149149
});
150150
}
151151

152-
return ctsClient;
152+
return ctsClient.sort((t1, t2) =>
153+
t1.operationId.localeCompare(t2.operationId)
154+
);
153155
}
154156

155157
async function loadCTS(): Promise<void> {

0 commit comments

Comments
 (0)