Convert tapString to UTF-8, allowing UTF8 output from PHPUnit, etc.

Closes #738
This commit is contained in:
Matthew Leffler 2015-01-12 12:25:55 -07:00 committed by Dan Cryer
parent e7d9d19368
commit a1dcba93db

View file

@ -162,6 +162,7 @@ class PhpUnit implements PHPCI\Plugin, PHPCI\ZeroConfigPlugin
}
$tapString = $this->phpci->getLastOutput();
$tapString = mb_convert_encoding($tapString, "UTF-8", "ISO-8859-1");
try {
$tapParser = new TapParser($tapString);