Skip to content

Commit

Permalink
update test suite
Browse files Browse the repository at this point in the history
The test `it_throws_exception_for_unsupported_currency` was
updated with a 'nonexistent' currency code, `LED` to test for
exception thrown in an event of an unsupported currency.
  • Loading branch information
AndikanGabriel committed Jun 9, 2021
1 parent e240dde commit 3c89457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/CurrencyConversionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function it_throws_exception_for_unsupported_currency()
{
$this->expectException(UnsupportedCurrencyCode::class);

Coindesk::toBtc(1, 'NGN');
Coindesk::toBtc(1, 'LED');
}

/**
Expand Down

0 comments on commit 3c89457

Please sign in to comment.