Merge pull request #376 from aaukt/external-ffs

fix target format for external format-filter-server
This commit is contained in:
VicDeo 2014-10-13 23:41:03 +03:00
commit 01a48a0166

View File

@ -30,7 +30,7 @@ class Converter {
public static function checkConnection(){ public static function checkConnection(){
$expected = file_get_contents(__DIR__ . '/response.odt'); $expected = file_get_contents(__DIR__ . '/response.odt');
$converted = self::convertExternal('', 'application/vnd.oasis.opendocument.text'); $converted = self::convertExternal('', 'odt');
return $converted === $expected; return $converted === $expected;
} }