From 982e1e0be6aa93fb724f5e1088a9f2c828c2e2b2 Mon Sep 17 00:00:00 2001 From: vvakame Date: Sat, 29 Aug 2015 00:14:37 +0900 Subject: [PATCH] fix q-retry/q-retry-tests.ts --- q-retry/q-retry-tests.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/q-retry/q-retry-tests.ts b/q-retry/q-retry-tests.ts index e5d5dd8ca..fc33d7ba9 100644 --- a/q-retry/q-retry-tests.ts +++ b/q-retry/q-retry-tests.ts @@ -1,3 +1,5 @@ +/// + import Q = require('q-retry'); Q @@ -9,7 +11,7 @@ Q return 0; }) .retry(num => { - num.toFixed; + num.toFixed; }) .retry(() => { @@ -32,8 +34,8 @@ Q limit: 10, interval: 1000, maxInterval: 20000, - intervalMultiplier: 1.5 + intervalMultiplier: 1.5 }) .then(str => { str.charAt; - }); \ No newline at end of file + });