Skip to content

Commit

Permalink
Fix PSR3Journal report.
Browse files Browse the repository at this point in the history
  • Loading branch information
vitor-mariano committed Feb 11, 2016
1 parent 88c3f73 commit e0acc2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Scientist/Journal/PSR3Journal.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ public function report(Experiment $experiment, Report $report)
$this->config->getIsMatchKey() => $result->isMatch(),
$this->config->getStartTimeKey() => $result->getStartTime(),
$this->config->getEndTimeKey() => $result->getEndTime(),
$this->config->getTimeKey() => $result->getEndTime(),
$this->config->getTimeKey() => $result->getTime(),
$this->config->getStartMemoryKey() => $result->getStartMemory(),
$this->config->getEndMemoryKey() => $result->getEndMemory(),
$this->config->getMemoryKey() => $result->getEndMemory()
$this->config->getMemoryKey() => $result->getMemory()
];

if ($this->config->shouldReportValue()) {
Expand Down Expand Up @@ -109,4 +109,4 @@ public function getReport()
{
return $this->report;
}
}
}

0 comments on commit e0acc2f

Please # to comment.