Skip to content

Commit

Permalink
fix: tick symbol in CryptoFuture test
Browse files Browse the repository at this point in the history
  • Loading branch information
Romazes committed Feb 13, 2024
1 parent 0e92054 commit aea3b12
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions QuantConnect.CoinAPI.Tests/CoinApiDataQueueHandlerTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void TearDown()
}
}

[Test]
[Test, Explicit("")]
public void SubscribeToBTCUSDSecondOnCoinbaseDataStreamTest()
{
var resetEvent = new AutoResetEvent(false);
Expand Down Expand Up @@ -83,7 +83,7 @@ public void SubscribeToBTCUSDSecondOnCoinbaseDataStreamTest()
_cancellationTokenSource.Cancel();
}

[Test]
[Test, Explicit("")]
public void SubscribeToBTCUSDSecondOnDifferentMarkets()
{
var resetEvent = new AutoResetEvent(false);
Expand Down Expand Up @@ -159,7 +159,7 @@ public void SubscribeToBTCUSDTFutureSecondBinance()
var resetEvent = new AutoResetEvent(false);
var resolution = Resolution.Second;
var tickData = new List<BaseData>();
var symbol = CoinApiTestHelper.BTCUSDTFutureBinance;
var symbol = CoinApiTestHelper.BTCUSDFutureBinance;
var config = CoinApiTestHelper.GetSubscriptionDataConfigs(symbol, resolution);

ProcessFeed(
Expand Down
2 changes: 1 addition & 1 deletion QuantConnect.CoinAPI.Tests/CoinApiTestHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static class CoinApiTestHelper
/// <summary>
/// PERPETUAL BTCUSDT
/// </summary>
public static readonly Symbol BTCUSDTFutureBinance = Symbol.Create("BTCUSDT", SecurityType.CryptoFuture, Market.Binance);
public static readonly Symbol BTCUSDFutureBinance = Symbol.Create("BTCUSD", SecurityType.CryptoFuture, Market.Binance);

public static void AssertSymbol(Symbol actualSymbol, Symbol expectedSymbol)
{
Expand Down

0 comments on commit aea3b12

Please sign in to comment.