Skip to content

Commit

Permalink
Test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Aug 10, 2024
1 parent 0c173b6 commit 126e985
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Kucoin.Net.UnitTests/KucoinRestIntegrationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public async Task TestSpotExchangeData()
await RunAndCheckResult(client => client.SpotApi.ExchangeData.GetAssetsAsync(default), false);
await RunAndCheckResult(client => client.SpotApi.ExchangeData.GetAssetAsync("ETH", default), false);
await RunAndCheckResult(client => client.SpotApi.ExchangeData.GetFiatPricesAsync(default, default, default), false);
await RunAndCheckResult(client => client.SpotApi.ExchangeData.GetLeveragedTokensAsync(default), false);
await RunAndCheckResult(client => client.SpotApi.ExchangeData.GetLeveragedTokensAsync(default), true);
}

[Test]
Expand Down Expand Up @@ -131,7 +131,7 @@ public async Task TestFuturesExchangeData()
await RunAndCheckResult(client => client.FuturesApi.ExchangeData.GetServerTimeAsync(default), false);
await RunAndCheckResult(client => client.FuturesApi.ExchangeData.GetServiceStatusAsync(default), false);
await RunAndCheckResult(client => client.FuturesApi.ExchangeData.GetKlinesAsync("XBTUSDM", Enums.FuturesKlineInterval.OneDay, default, default, default), false);
await RunAndCheckResult(client => client.FuturesApi.ExchangeData.Get24HourTransactionVolumeAsync(default), false);
await RunAndCheckResult(client => client.FuturesApi.ExchangeData.Get24HourTransactionVolumeAsync(default), true);
await RunAndCheckResult(client => client.FuturesApi.ExchangeData.GetFundingRateHistoryAsync("XBTUSDM", DateTime.UtcNow.AddDays(-3), DateTime.UtcNow, default), false);
}

Expand Down

0 comments on commit 126e985

Please sign in to comment.