Skip to content

Commit aa57af1

Browse files
petebacondarwinjamesdaily
authored andcommitted
style(angularSpec): add missing semicolon
1 parent fdf5e33 commit aa57af1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/AngularSpec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ describe('angular', function() {
421421
var jqObject = jqLite("<p><span>s1</span><span>s2</span></p>").find("span"),
422422
log = [];
423423

424-
forEach(jqObject, function(value, key) { log.push(key + ':' + value.innerHTML)});
424+
forEach(jqObject, function(value, key) { log.push(key + ':' + value.innerHTML); });
425425
expect(log).toEqual(['0:s1', '1:s2']);
426426
});
427427

0 commit comments

Comments
 (0)