Skip to content

Commit

Permalink
fix: testcase param forex instead of equity
Browse files Browse the repository at this point in the history
  • Loading branch information
Romazes committed Feb 22, 2024
1 parent 980a9e6 commit 0de9587
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions QuantConnect.CoinAPI.Tests/CoinAPIDataDownloaderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ private static IEnumerable<TestCaseData> HistoricalInvalidDataThrowExceptionTest
TestGlobals.Initialize();
yield return new TestCaseData(Symbol.Create("BTCBTC", SecurityType.Crypto, Market.Binance))
.SetDescription($"Wrong Symbol - 'BTCBTC'");
yield return new TestCaseData(Symbol.Create("ETHUSDT", SecurityType.Equity, Market.Binance))
.SetDescription($"Wrong SecurityType - {SecurityType.Equity}");
yield return new TestCaseData(Symbol.Create("ETHUSDT", SecurityType.Forex, Market.Binance))
.SetDescription($"Wrong SecurityType - {SecurityType.Forex}");
}
}

Expand Down

0 comments on commit 0de9587

Please sign in to comment.