diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/ControlsTest.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/ControlsTest.php b/test/ControlsTest.php index 4635ae8..f80364a 100644 --- a/test/ControlsTest.php +++ b/test/ControlsTest.php @@ -190,12 +190,10 @@ class ControlsTest extends AbstractTestCase * @param $flag * @param $line_count * @dataProvider appliedFlagsProvider + * @skipIfHHVM */ public function testAppliedFlags($flag, $line_count) { - if (defined('HHVM_VERSION')) { - $this->markTestSkipped('HHVM CSV parsing is different'); - } $path = __DIR__.'/data/tmp.txt'; $obj = new SplFileObject($path, 'w+'); $obj->fwrite("1st\n2nd\n"); |