remove HHVM code

This commit is contained in:
Nicolas Grekas 2018-06-15 09:52:13 +02:00
parent 79b804fdb7
commit aa432743f5

View File

@ -166,9 +166,6 @@ EOTXT;
public function testCastArrayObject()
{
if (\defined('HHVM_VERSION')) {
$this->markTestSkipped('HHVM as different internal details.');
}
$var = new \ArrayObject(array(123));
$var->foo = 234;
@ -188,9 +185,6 @@ EOTXT;
public function testArrayIterator()
{
if (\defined('HHVM_VERSION')) {
$this->markTestSkipped('HHVM as different internal details.');
}
$var = new MyArrayIterator(array(234));
$expected = <<<EOTXT