aboutsummaryrefslogtreecommitdiffstats
path: root/test/ScenarioSpec.js
diff options
context:
space:
mode:
authorIgor Minar2012-03-09 00:00:05 -0800
committerIgor Minar2012-03-09 16:14:26 -0800
commitf4d338d393dabb49182d40b4fe90c4d1b51621c0 (patch)
tree6c20fbef9865869e9db44f27c53aec11f1e30d5e /test/ScenarioSpec.js
parent0bfaa579c04d1b7cd21fbe16bfbc47a684f223b3 (diff)
downloadangular.js-f4d338d393dabb49182d40b4fe90c4d1b51621c0.tar.bz2
chore(*): refactor all ng: to ng-
Diffstat (limited to 'test/ScenarioSpec.js')
-rw-r--r--test/ScenarioSpec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ScenarioSpec.js b/test/ScenarioSpec.js
index 2070d301..cc2efd1e 100644
--- a/test/ScenarioSpec.js
+++ b/test/ScenarioSpec.js
@@ -10,7 +10,7 @@ describe("ScenarioSpec: Compilation", function() {
describe('compilation', function() {
it("should compile dom node and return scope", inject(function($rootScope, $compile) {
- var node = jqLite('<div ng:init="a=1">{{b=a+1}}</div>')[0];
+ var node = jqLite('<div ng-init="a=1">{{b=a+1}}</div>')[0];
element = $compile(node)($rootScope);
$rootScope.$digest();
expect($rootScope.a).toEqual(1);