aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/matchers.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/matchers.js b/test/matchers.js
index fd706d3c..6bfed257 100644
--- a/test/matchers.js
+++ b/test/matchers.js
@@ -142,7 +142,7 @@ beforeEach(function() {
toHaveClass: function(clazz) {
this.message = function() {
- return "Expected '" + angular.module.ngMock.dump(this.actual) + "' to have class '" + clazz + "'.";
+ return "Expected '" + angular.mock.dump(this.actual) + "' to have class '" + clazz + "'.";
};
return this.actual.hasClass ?
this.actual.hasClass(clazz) :