mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-05-15 10:13:10 +00:00
style(angularSpec): add missing semicolon
This commit is contained in:
parent
4d6a7781d7
commit
d3fce9e82c
1 changed files with 1 additions and 1 deletions
|
|
@ -421,7 +421,7 @@ describe('angular', function() {
|
||||||
var jqObject = jqLite("<p><span>s1</span><span>s2</span></p>").find("span"),
|
var jqObject = jqLite("<p><span>s1</span><span>s2</span></p>").find("span"),
|
||||||
log = [];
|
log = [];
|
||||||
|
|
||||||
forEach(jqObject, function(value, key) { log.push(key + ':' + value.innerHTML)});
|
forEach(jqObject, function(value, key) { log.push(key + ':' + value.innerHTML); });
|
||||||
expect(log).toEqual(['0:s1', '1:s2']);
|
expect(log).toEqual(['0:s1', '1:s2']);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue