Skip to content

Commit 6860034

Browse files
committed
test(toCamelCaseKeys): fix PascalCase test expectation
1 parent ded53a9 commit 6860034

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/object/toCamelCaseKeys.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,12 +167,12 @@ describe('camelizeKeys', () => {
167167
const result = toCamelCaseKeys(input);
168168

169169
expect(result).toEqual({
170-
userID: 1,
170+
userId: 1,
171171
apiToken: 'xxx',
172172
});
173173

174174
expectTypeOf(result).toEqualTypeOf<{
175-
userID: number;
175+
userId: number;
176176
apiToken: string;
177177
}>();
178178
});

0 commit comments

Comments
 (0)