Skip to content

Commit e151d79

Browse files
committed
Import corrected
1 parent 8bfe956 commit e151d79

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/calendar-test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import * as requests from '../src/model/requests/requests';
22
import uuidv4 from 'uuid/v4';
33
import * as models from '../src/model/model';
4-
import {DailyRecurrencePatternDto} from '../src/model/model';
54
import 'mocha';
65
import {expect} from 'chai';
76
import {suiteBase} from "./suite-base";
@@ -141,7 +140,7 @@ describe('Calendar tests', function () {
141140
calendar.startDate = td.getDate(undefined, 1);
142141
calendar.endDate = td.getDate(calendar.startDate, 1);
143142
calendar.location = 'Some location';
144-
calendar.recurrence = new DailyRecurrencePatternDto(undefined, 10, undefined, "Monday");
143+
calendar.recurrence = new models.DailyRecurrencePatternDto(undefined, 10, undefined, "Monday");
145144
return calendar;
146145
}
147146
});

0 commit comments

Comments
 (0)