Skip to content

Commit

Permalink
change deepStrictEqual to deepEqual for compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Jess Robins committed Feb 15, 2018
1 parent 3e9427b commit 01d3270
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/rrule.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,13 @@ describe('RRule', function () {
}
var rule = new RRule(options)

assert.deepStrictEqual(options, {
assert.deepEqual(options, {
freq: RRule.MONTHLY,
dtstart: new Date(2013, 0, 1),
count: 3,
bymonthday: [28]
})
assert.deepStrictEqual(rule.origOptions, options)
assert.deepEqual(rule.origOptions, options)
})

testRecurring('missing Feb 28 https://github.com/jakubroztocil/rrule/issues/21',
Expand Down

0 comments on commit 01d3270

Please sign in to comment.