aboutsummaryrefslogtreecommitdiffstats
path: root/test/directive/ngIncludeSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/directive/ngIncludeSpec.js')
-rw-r--r--test/directive/ngIncludeSpec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/directive/ngIncludeSpec.js b/test/directive/ngIncludeSpec.js
index 32d760c3..f4652a73 100644
--- a/test/directive/ngIncludeSpec.js
+++ b/test/directive/ngIncludeSpec.js
@@ -33,7 +33,7 @@ describe('ng-include', function() {
it('should remove previously included text if a falsy value is bound to src', inject(
putIntoCache('myUrl', '{{name}}'),
function($rootScope, $compile, $browser) {
- element = jqLite('<ng:include src="url" scope="childScope"></ng:include>');
+ element = jqLite('<div ng-include="url" scope="childScope"></div>');
element = $compile(element)($rootScope);
$rootScope.childScope = $rootScope.$new();
$rootScope.childScope.name = 'igor';