Skip to content

Commit b039f15

Browse files
mikeschenvnugent
authored andcommitted
update comment on test
1 parent 3ef96c2 commit b039f15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/model/__tests__/UserDataSource.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,14 +136,14 @@ describe('UserDataSource', () => {
136136
let callCount = 0
137137
jest.spyOn(UserDataSource, 'calculateLastUpdatedInDays')
138138
.mockImplementation(() => {
139-
// For both calls in the third update operation:
139+
// For both calls in the third update operation:
140140
// First call (account age) - return 15 days (older than 14 days)
141141
// Second call (last username update) - return 1 day (very recent)
142142
callCount++
143143
return callCount % 2 === 1 ? 15 : 1
144144
})
145145

146-
// Try the 3rd update operation that should fail
146+
// Try the update operation that should fail
147147
let errorThrown = false
148148
try {
149149
await users.createOrUpdateUserProfile(updater, {

0 commit comments

Comments
 (0)