Skip to content

Commit abf4705

Browse files
committed
Fix one missed unit test spec.
1 parent bcb7131 commit abf4705

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/calendarService.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ describe("calendar service", function() {
1111

1212
beforeEach(module("materialCalendar"));
1313

14-
beforeEach(inject(function(_Calendar_){
14+
beforeEach(inject(["materialCalendar.Calendar", function(_Calendar_){
1515
Calendar = new _Calendar_();
16-
}));
16+
}]));
1717

1818
it("should have all public methods defined", function() {
1919
expect(Calendar).toBeDefined();

0 commit comments

Comments
 (0)