aboutsummaryrefslogtreecommitdiffstats
path: root/test/AngularSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/AngularSpec.js')
-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']);
});