aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorPeter Bacon Darwin2013-10-05 10:32:12 +0100
committerVojta Jina2013-10-07 08:45:25 -0700
commitd3fce9e82c1e248231d46bf3ff6ed61b20914088 (patch)
tree53a315f5ecac862bd8958ea4f482ce58759d2266 /test
parent4d6a7781d790fb5e2bdd847ffb0fb21652b57138 (diff)
downloadangular.js-d3fce9e82c1e248231d46bf3ff6ed61b20914088.tar.bz2
style(angularSpec): add missing semicolon
Diffstat (limited to 'test')
-rw-r--r--test/AngularSpec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/AngularSpec.js b/test/AngularSpec.js
index 62ea31d9..a97c7591 100644
--- a/test/AngularSpec.js
+++ b/test/AngularSpec.js
@@ -421,7 +421,7 @@ describe('angular', function() {
var jqObject = jqLite("<p><span>s1</span><span>s2</span></p>").find("span"),
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']);
});