Skip to content

Commit 8058cdc

Browse files
committed
06/02: fix broken double quote
1 parent 16cc164 commit 8058cdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/06.modules/02.problem.private-side-effects/authorize.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ test('returns the authorized user', async () => {
2828
// to resolve with a user object.
2929
// 💰 mockFunction.mockResolvedValue(value)
3030
// You may use the following object as the mock user object:
31-
// 💰 { id: 'abc-123', name: 'Kody Koala" }
31+
// 💰 { id: 'abc-123', name: 'Kody Koala' }
3232
//
3333
// 🐨 Write an assertion on the `authorize` function call
3434
// to ensure that it resolves to the mock user object correctly.

0 commit comments

Comments
 (0)