Skip to content

Commit a2da582

Browse files
committed
Fixup comment names
1 parent 14012c3 commit a2da582

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/options/commaPosition.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ export default function supportsCommaPosition(format: FormatFn) {
128128
const result = format(
129129
`SELECT alpha, --comment1
130130
beta,--comment2
131-
delta, epsilon,--comm
132-
iota --comment3`,
131+
delta, epsilon,--comment3
132+
iota --comment4`,
133133
{ commaPosition: 'tabular' }
134134
);
135135
expect(result).toBe(
@@ -138,8 +138,8 @@ export default function supportsCommaPosition(format: FormatFn) {
138138
alpha , --comment1
139139
beta , --comment2
140140
delta ,
141-
epsilon, --comm
142-
iota --comment3
141+
epsilon, --comment3
142+
iota --comment4
143143
`
144144
);
145145
});

0 commit comments

Comments
 (0)