Index: test/main_test.ts |
diff --git a/test/main_test.ts b/test/main_test.ts |
index bd8b2a9f3af4ce72cb5ec0b19d06bab8d06661f8..32ba50cc8bf9da47802d6ab5a90c22c84b0daad4 100644 |
--- a/test/main_test.ts |
+++ b/test/main_test.ts |
@@ -162,8 +162,9 @@ class Foo { |
}); |
it('translates .es6, .ts, and .js', () => { |
let transpiler = new main.Transpiler({basePath: undefined}); |
- ['a.js', 'a.ts', 'a.es6'].forEach( |
- (n) => { chai.expect(transpiler.getOutputPath(n, '')).to.equal('a.dart'); }); |
+ ['a.js', 'a.ts', 'a.es6'].forEach((n) => { |
+ chai.expect(transpiler.getOutputPath(n, '')).to.equal('a.dart'); |
+ }); |
}); |
}); |
}); |