Skip to content

Commit

Permalink
Fixes tests
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoSpy committed May 24, 2018
1 parent 79ae879 commit 1ab6bb2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/Services/AirspaceServicesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ public function testRetrieveEAUPChain()
*/
public function testGetNMVersion()
{
$this->assertEquals($this->version, $this->getSoapClient()->getNMVersion());
$nmVersion = $this->getSoapClient()->getNMVersion();
$this->assertEquals($this->version, $nmVersion);
}

public function testRetrieveEAUPRSAs()
Expand Down
3 changes: 2 additions & 1 deletion tests/Services/FlowServicesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ private function getSoapClient() : FlowServices
*/
public function testGetNMVersion()
{
$this->assertEquals($this->version, $this->getSoapClient()->getNMVersion());
$nmVersion = $this->getSoapClient()->getNMVersion();
$this->assertEquals($this->version, $nmVersion);
}

/**
Expand Down

0 comments on commit 1ab6bb2

Please sign in to comment.