Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit d3fce9e

Browse files
petebacondarwinvojtajina
authored andcommitted
style(angularSpec): add missing semicolon
1 parent 4d6a778 commit d3fce9e

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)