aboutsummaryrefslogtreecommitdiffstats
path: root/test/ng/intervalSpec.js
diff options
context:
space:
mode:
authorChia-liang Kao2014-02-13 17:40:29 +0800
committerPawel Kozlowski2014-02-22 22:41:51 +0100
commitffe5115355baa6ee2136b6fb5e4828e4e2fa58f8 (patch)
tree8e7ca60ea92a30a95ed9d4090407ed4757f61f8f /test/ng/intervalSpec.js
parent61b2515c0d7106e3413387e4b1f0d6cf335ba6c7 (diff)
downloadangular.js-ffe5115355baa6ee2136b6fb5e4828e4e2fa58f8.tar.bz2
style(tests): remove trailing comma in specs
Closes #6241
Diffstat (limited to 'test/ng/intervalSpec.js')
-rw-r--r--test/ng/intervalSpec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ng/intervalSpec.js b/test/ng/intervalSpec.js
index 6999f750..59f62d96 100644
--- a/test/ng/intervalSpec.js
+++ b/test/ng/intervalSpec.js
@@ -14,7 +14,7 @@ describe('$interval', function() {
nextTime:(now + delay),
delay: delay,
fn: fn,
- id: nextRepeatId,
+ id: nextRepeatId
});
repeatFns.sort(function(a,b){ return a.nextTime - b.nextTime;});