Skip to content

Commit

Permalink
Merge pull request #1 from matheusmariano/patch-1
Browse files Browse the repository at this point in the history
Fix PSR3Journal report.
  • Loading branch information
nikkobautista committed Feb 11, 2016
2 parents 88c3f73 + e0acc2f commit 15b5d31
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 15b5d31

Please # to comment.