Skip to content

Commit

Permalink
Fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
danepowell committed Jun 10, 2020
1 parent 8fd5390 commit f9e72e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/phpunit/src/TestBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ protected function setUp($output = NULL): void {
$this->cloudDatastore = new JsonFileStore($this->cloudConfigFilepath, 1);
$this->amplitudeProphecy = $this->prophet->prophesize(Amplitude::class);
$this->clientProphecy = $this->prophet->prophesize(Client::class);
$this->clientProphecy->addOption('headers', ['User-Agent' => 'acli/UNKNOWN']);
$this->clientProphecy->addOption('headers', ['User-Agent' => 'acli/UNKNOWN'])->willReturn();
$this->localMachineHelper = new LocalMachineHelper($this->input, $output, $logger);
$this->clientServiceProphecy = $this->prophet->prophesize(ClientService::class);
$this->clientServiceProphecy->getClient()->willReturn($this->clientProphecy->reveal());
Expand Down

0 comments on commit f9e72e2

Please sign in to comment.