Skip to content

Commit 656be3b

Browse files
committed
Remove unnecessary method call
1 parent 2172c8b commit 656be3b

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/Extractors/JsonTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ public function default_options()
1919
$extractor = new Json;
2020

2121
$extractor->input(__DIR__.'/../data/json1.json');
22-
$extractor->initialize();
2322

2423
$this->assertEquals($expected, iterator_to_array($extractor->extract()));
2524
}
@@ -40,7 +39,6 @@ public function custom_columns_json_path()
4039
'name' => '$..bindings[*].name.value',
4140
'email' => '$..bindings[*].email.value',
4241
]]);
43-
$extractor->initialize();
4442

4543
$this->assertEquals($expected, iterator_to_array($extractor->extract()));
4644
}

0 commit comments

Comments
 (0)