summaryrefslogtreecommitdiffstats
path: root/test/ControlsTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/ControlsTest.php')
-rw-r--r--test/ControlsTest.php5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/ControlsTest.php b/test/ControlsTest.php
index 286dd04..42e6edc 100644
--- a/test/ControlsTest.php
+++ b/test/ControlsTest.php
@@ -196,11 +196,8 @@ class ControlsTest extends PHPUnit_Framework_TestCase
*/
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 = new SplFileObject($path, 'w+');
$obj->fwrite("1st\n2nd\n");
$reader = Reader::createFromFileObject($obj);
$reader->setFlags($flag);