aboutsummaryrefslogtreecommitdiffstats
path: root/test/directive
diff options
context:
space:
mode:
Diffstat (limited to 'test/directive')
-rw-r--r--test/directive/ngNonBindableSpec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/directive/ngNonBindableSpec.js b/test/directive/ngNonBindableSpec.js
index 4f69528b..1f7bf25d 100644
--- a/test/directive/ngNonBindableSpec.js
+++ b/test/directive/ngNonBindableSpec.js
@@ -10,7 +10,7 @@ describe('ng-non-bindable', function() {
});
- iit('should prevent compilation of the owning element and its children',
+ it('should prevent compilation of the owning element and its children',
inject(function($rootScope, $compile) {
element = $compile('<div ng-non-bindable text="{{name}}"><span ng-bind="name"></span></div>')($rootScope);
$rootScope.name = 'misko';