Move the expected FFS response to the assets

This commit is contained in:
Victor Dubiniuk 2014-11-05 17:29:26 +03:00
Родитель 982a1cacb3
Коммит 3ea97634ae
2 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

Просмотреть файл

@ -29,7 +29,7 @@ class Converter {
}
public static function checkConnection(){
$expected = file_get_contents(__DIR__ . '/response.odt');
$expected = file_get_contents(dirname(__DIR__) . '/assets/response.odt');
$converted = self::convertExternal('', 'odt');
return $converted === $expected;