aboutsummaryrefslogtreecommitdiffstats
path: root/test/directive/ngNonBindableSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/directive/ngNonBindableSpec.js')
-rw-r--r--test/directive/ngNonBindableSpec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/directive/ngNonBindableSpec.js b/test/directive/ngNonBindableSpec.js
index c974948d..8b745364 100644
--- a/test/directive/ngNonBindableSpec.js
+++ b/test/directive/ngNonBindableSpec.js
@@ -1,7 +1,7 @@
'use strict';
-describe('ng:non-bindable', function() {
+describe('ng-non-bindable', function() {
var element;
@@ -12,7 +12,7 @@ describe('ng:non-bindable', function() {
it('should prevent compilation of the owning element and its children',
inject(function($rootScope, $compile) {
- element = $compile('<div ng:non-bindable><span ng:bind="name"></span></div>')($rootScope);
+ element = $compile('<div ng-non-bindable><span ng-bind="name"></span></div>')($rootScope);
$rootScope.name = 'misko';
$rootScope.$digest();
expect(element.text()).toEqual('');