diff --git a/promises-a-plus/promises-a-plus-tests.ts b/promises-a-plus/promises-a-plus-tests.ts
index bf6cc5ce0..0d7f5261a 100644
--- a/promises-a-plus/promises-a-plus-tests.ts
+++ b/promises-a-plus/promises-a-plus-tests.ts
@@ -4,9 +4,9 @@
///
///
-var thenNum: PromisesAPlus.Thenable;
-var thenStr: PromisesAPlus.Thenable;
-var thenBool: PromisesAPlus.Thenable;
+var thenNum: PromisesAPlus.Thenable;
+var thenStr: PromisesAPlus.Thenable;
+var thenBool: PromisesAPlus.Thenable;
var impl: PromisesAPlus.PromiseImpl;
@@ -45,9 +45,9 @@ function testCompatibleWithRxJS() {
}
function testCompatibleWithES6Promises() {
- // from spec to ES6
- var es6ThenNum: Thenable = thenNum;
- var es6ThenStr: Thenable = thenStr;
+ // define ES6 thenables
+ var es6ThenNum: Thenable;
+ var es6ThenStr: Thenable;
// from ES6 to spec
thenNum = es6ThenNum;