Skip to content

Commit 55f3638

Browse files
committed
chore: fix linting
1 parent 0232a4a commit 55f3638

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

protographic/src/sdl-to-proto-visitor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1603,7 +1603,7 @@ Example:
16031603
formatIndent(2, `repeated ${innerWrapperName} items = 1;`),
16041604
formatIndent(1, `}`),
16051605
);
1606-
1606+
16071607
// Wrapper types always use deterministic field numbers - 'list' field is always 1
16081608
lines.push(formatIndent(1, `List list = 1;`));
16091609
} else {

protographic/tests/sdl-to-proto/06-field-ordering.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1368,10 +1368,10 @@ describe('Field Ordering and Preservation', () => {
13681368
const userListNumber = listOfListOfUserFields['list'];
13691369

13701370
// Verify correct field types for different wrapper levels
1371-
expect(stringItemsNumber).toBe(1); // Simple wrapper has 'items'
1372-
expect(stringListNumber).toBe(1); // Nested wrapper has 'list'
1373-
expect(userItemsNumber).toBe(1); // Simple wrapper has 'items'
1374-
expect(userListNumber).toBe(1); // Nested wrapper has 'list'
1371+
expect(stringItemsNumber).toBe(1); // Simple wrapper has 'items'
1372+
expect(stringListNumber).toBe(1); // Nested wrapper has 'list'
1373+
expect(userItemsNumber).toBe(1); // Simple wrapper has 'items'
1374+
expect(userListNumber).toBe(1); // Nested wrapper has 'list'
13751375

13761376
// Get the generated lock data
13771377
const lockData = visitor1.getGeneratedLockData();

0 commit comments

Comments
 (0)