Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgoli committed Jun 9, 2022
1 parent 803c03b commit 3d7d64b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const testRecurring = function (
) {
let rule: any
let method: string
let args: any
let args: unknown[]

if (typeof testObj === 'function') {
testObj = testObj()
Expand All @@ -101,7 +101,7 @@ export const testRecurring = function (
} else {
rule = testObj.rrule
method = testObj.method
args = testObj.args
args = testObj.args ?? []
}

// Use text and string representation of the rrule as the message.
Expand Down

0 comments on commit 3d7d64b

Please sign in to comment.