Skip to content
This repository has been archived by the owner on Nov 29, 2017. It is now read-only.

Commit

Permalink
Fix namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
stephpy committed Dec 29, 2014
1 parent d10abf6 commit 428759e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Benchmark/BenchmarkContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ public function iSendGetRequestToWithPercentile($nbRequest, $method, $url, $perc
$url = $this->baseUrl.'/'.ltrim($url, '/');
$request = $this->httpClient->createRequest($method, $url);

$this->benchmark = new Benchmark\HttpResponseTimeBenchmark($request, $nbRequest);
$this->benchmark->start($this->httpClient, new Benchmark\HttpTimeDataCollector($percentile));
$this->benchmark = new HttpResponseTimeBenchmark($request, $nbRequest);
$this->benchmark->start($this->httpClient, new HttpTimeDataCollector($percentile));
}

/**
Expand Down

0 comments on commit 428759e

Please sign in to comment.