Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kewisch/ical.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9dea99025005158a840cebc92ae14cd42a378750
Choose a base ref
..
head repository: kewisch/ical.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4f5c2d6845db2f418761525fba32eb5beaa040f9
Choose a head ref
Showing with 4 additions and 4 deletions.
  1. +4 −4 test/recur_expansion_test.js
8 changes: 4 additions & 4 deletions test/recur_expansion_test.js
Original file line number Diff line number Diff line change
@@ -71,10 +71,10 @@ suite('recur_expansion', function() {
dtstart: primary.startDate
});
var expected = [
new Date(2012, 09, 02, 10, 00, 00),
new Date(2012, 10, 05, 10, 00, 00),
new Date(2012, 10, 10, 10, 00, 00),
new Date(2012, 10, 30, 10, 00, 00)
new Date(2012, 09, 02, 10),
new Date(2012, 10, 05, 10),
new Date(2012, 10, 10, 10),
new Date(2012, 10, 30, 10)
], dates = [], next;

while (next = subject.next() ) {