Remove condition related to HHVM

Because we don't support HHVM anymore, there is no reason to keep a
condition that keeps the test when running the test suite in HHVM.

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
This commit is contained in:
Henrique Moody 2018-09-03 17:38:33 +02:00
parent c7fcc09af6
commit fb9d3a6918
No known key found for this signature in database
GPG key ID: 221E9281655813A6

View file

@ -28,10 +28,6 @@ class MimetypeTest extends TestCase
protected function setUp(): void
{
if (defined('HHVM_VERSION')) {
self::markTestSkipped('If you are a HHVM user, and you are in the mood, please fix it');
}
$this->filename = sprintf('%s/validation.txt', sys_get_temp_dir());
file_put_contents($this->filename, 'File content');