diff --git a/angular-notifications/angular-notifications-tests.ts b/angular-notifications/angular-notifications-tests.ts index b6aaf99cf..1632ff1e7 100644 --- a/angular-notifications/angular-notifications-tests.ts +++ b/angular-notifications/angular-notifications-tests.ts @@ -6,7 +6,7 @@ myapp.controller("MyController", ["$scope", "notifications", function ($scope:ng.IScope, notifications:angular.notifications.INotificationFactory) { // <-- Inject notifications var userData = {'some': 'data', 'optional': true}; - notification.info("Something happened", "here is the content of what happened", userData); + notifications.info("Something happened", "here is the content of what happened", userData); } ]);