From 40abb004e818c679ddce678830d3d6dd95ba84ab Mon Sep 17 00:00:00 2001 From: Luke Hagar Date: Wed, 29 Oct 2025 21:15:52 -0500 Subject: [PATCH] Update key-ordering.test.ts --- test/key-ordering.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/key-ordering.test.ts b/test/key-ordering.test.ts index 756f060..8738263 100644 --- a/test/key-ordering.test.ts +++ b/test/key-ordering.test.ts @@ -104,7 +104,7 @@ describe('Key Ordering Tests', () => { const responsesIndex = resultString.indexOf('responses'); const callbacksIndex = resultString.indexOf('callbacks'); - expect(summaryIndex).toBeLessThan(operationIdIndex); + expect(operationIdIndex).toBeLessThan(summaryIndex); expect(operationIdIndex).toBeLessThan(descriptionIndex); expect(descriptionIndex).toBeLessThan(tagsIndex); expect(tagsIndex).toBeLessThan(deprecatedIndex);