Skip to content

Commit

Permalink
Integration tests fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Aug 7, 2024
1 parent 83ed0de commit 1c0cd1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CoinEx.Net.UnitTests/CoinExRestIntegrationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ public async Task TestSpotAccount()
await RunAndCheckResult(client => client.SpotApiV2.Account.GetBalancesAsync(default), true);
await RunAndCheckResult(client => client.SpotApiV2.Account.GetMarginBalancesAsync(default), true);
await RunAndCheckResult(client => client.SpotApiV2.Account.GetFinancialBalancesAsync(default), true);
await RunAndCheckResult(client => client.SpotApiV2.Account.GetCreditAccountAsync(default), true);
//await RunAndCheckResult(client => client.SpotApiV2.Account.GetCreditAccountAsync(default), true);
await RunAndCheckResult(client => client.SpotApiV2.Account.GetAutoMarketMakerAccountLiquidityAsync(default), true);
await RunAndCheckResult(client => client.SpotApiV2.Account.GetBorrowHistoryAsync(default, default, default, default, default), true);
await RunAndCheckResult(client => client.SpotApiV2.Account.GetBorrowLimitAsync("ETHUSDT", "USDT", default), true);
await RunAndCheckResult(client => client.SpotApiV2.Account.GetDepositHistoryAsync("USDT", default, default, default, default, default), true);
await RunAndCheckResult(client => client.SpotApiV2.Account.GetWithdrawalHistoryAsync(default, default, default, default, default, default), true);
await RunAndCheckResult(client => client.SpotApiV2.Account.GetDepositWithdrawalConfigAsync("ETH", default), true);
await RunAndCheckResult(client => client.SpotApiV2.Account.GetTransfersAsync("ETH", Enums.AccountType.Spot, default, default, default, default, default, default, default), true);
await RunAndCheckResult(client => client.SpotApiV2.Account.GetTransfersAsync("ETH", Enums.AccountType.Margin, default, default, default, default, default, default, default), true);
}

[Test]
Expand Down

0 comments on commit 1c0cd1e

Please sign in to comment.