Skip to content

Commit e09ac2c

Browse files
fix(billing): remove unused _status param from test.each callback (lint)
1 parent 21b30ac commit e09ac2c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/billing/tests/billing.quota.unit.tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ describe('requireQuota middleware:', () => {
207207

208208
test.each(['past_due', 'canceled', 'unpaid', 'incomplete', 'incomplete_expired', 'paused'])(
209209
'should handle %s subscription denial from service',
210-
async (_status) => {
210+
async () => {
211211
mockBillingQuotaService.assertCanExecute.mockRejectedValue(
212212
new AppError('You have reached the usage limit for this resource', {
213213
status: 429,

0 commit comments

Comments
 (0)