Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Edrisym committed Nov 15, 2024
1 parent 57ce843 commit b2a7fd0
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Wallet_Tests/Wallet_Wallet_Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ namespace Wallet_Tests;
public class WalletTests
{
private static Currency CreateCurrency(string code = "USD", string name = "United States Dollar",
decimal ratio = 1.99m)
{
return Currency.Create(code, name, ratio);
}
decimal ratio = 1.99m) => Currency.Create(code, name, ratio);

private static Wallet CreateWallet(decimal balance, decimal ratio = 1.99m)
{
Expand Down

0 comments on commit b2a7fd0

Please sign in to comment.