From 65a9713d800f1e9e5651a492e8465eef91838fa4 Mon Sep 17 00:00:00 2001 From: Yui T Date: Thu, 16 Jul 2015 18:26:46 -0700 Subject: [PATCH] Fix reading rwc file --- src/harness/rwcRunner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/harness/rwcRunner.ts b/src/harness/rwcRunner.ts index bbe80abc887..54aeff18efd 100644 --- a/src/harness/rwcRunner.ts +++ b/src/harness/rwcRunner.ts @@ -123,7 +123,7 @@ module RWC { content = ts.sys.readFile(unitName); } catch (e) { - // Leave content undefined. + content = ts.sys.readFile(fileName); } return { unitName, content }; }