From 026ce23233ee1d573bde8c21bc1e49f0749c213c Mon Sep 17 00:00:00 2001 From: Erjan Gavalji Date: Thu, 25 Feb 2016 10:38:04 +0200 Subject: [PATCH] Fix a wrongly-encoded character Visual Studio adds a C2 A0 sequence instead of a simple space. Convert that to a space. --- apps/tests/testRunner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/tests/testRunner.ts b/apps/tests/testRunner.ts index 20fa88646..f8306e652 100644 --- a/apps/tests/testRunner.ts +++ b/apps/tests/testRunner.ts @@ -136,7 +136,7 @@ function printRunTestStats() { failedTestInfo.push(allTests[j].testName + " FAILED: " + allTests[j].errorMessage); - testFileContent.push(``); + testFileContent.push(``); } else { testFileContent.push(``);