Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
sj-i committed Jun 2, 2020
1 parent f6eebf3 commit 62391f2
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function testReadCurrentFunctionName()
$memory_reader = new MemoryReader();
$executor_globals_reader = new ExecutorGlobalsReader(
$memory_reader,
new ZendTypeReaderCreator()
new ZendTypeReaderCreator(),
);
$this->child = proc_open(
[
Expand Down Expand Up @@ -83,7 +83,8 @@ public function testReadCurrentFunctionName()
);
$php_globals_finder = new PhpGlobalsFinder(
$php_symbol_reader_creator,
new LittleEndianReader()
new LittleEndianReader(),
new MemoryReader()
);

/** @var int $child_status['pid'] */
Expand Down

0 comments on commit 62391f2

Please sign in to comment.