Skip to content

Commit

Permalink
Change BigNumber assertion to assertInstanceOf
Browse files Browse the repository at this point in the history
  • Loading branch information
rdarcy1 committed Feb 10, 2021
1 parent c2408ad commit 39dfe0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ExchangeRateProvider/BaseCurrencyProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function testReturnBigNumber($rate) : void

$rate = $baseProvider->getExchangeRate('USD', 'EUR');

$this->assertEquals(BigNumber::of($rate), $rate);
$this->assertInstanceOf(BigNumber::class, $rate);
}

public function providerReturnBigNumber() : array
Expand Down

0 comments on commit 39dfe0b

Please sign in to comment.