mirror of
https://github.com/archtechx/money.git
synced 2025-12-13 11:44:02 +00:00
remove pest()
This commit is contained in:
parent
e30211058a
commit
578c5c48ba
3 changed files with 4 additions and 9 deletions
|
|
@ -170,7 +170,7 @@ test('an exception is thrown if none of the currencies match the prefix and suff
|
|||
|
||||
currencies()->remove(USD::class);
|
||||
|
||||
pest()->expectException(CannotExtractCurrencyException::class);
|
||||
$this->expectException(CannotExtractCurrencyException::class);
|
||||
Money::fromFormatted($formatted);
|
||||
});
|
||||
|
||||
|
|
@ -178,7 +178,7 @@ test('an exception is thrown if multiple currencies are using the same prefix an
|
|||
currencies()->add(['code' => 'USD2', 'name' => 'USD2', 'prefix' => '$']);
|
||||
$money = money(1000);
|
||||
|
||||
pest()->expectException(CannotExtractCurrencyException::class);
|
||||
$this->expectException(CannotExtractCurrencyException::class);
|
||||
Money::fromFormatted($money->formatted());
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue