Skip to content

Commit

Permalink
fix: broken mock test (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
Romazes committed Mar 19, 2024
1 parent 2d68eb5 commit 929d4f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public void GetDailyLessThan100DaysGetsCompactDailyData()
_avClient.Verify();
var requestUrl = BuildUrl(request);
Assert.AreEqual(Method.GET, request.Method);
Assert.AreEqual($"{BASE_URL}query?symbol=AAPL&datatype=csv&function=TIME_SERIES_DAILY", requestUrl);
Assert.AreEqual($"{BASE_URL}query?symbol=AAPL&datatype=csv&function=TIME_SERIES_DAILY&outputsize=full", requestUrl);

Assert.IsInstanceOf<IEnumerable<TradeBar>>(result);
var bars = ((IEnumerable<TradeBar>)result).ToList();
Expand Down

0 comments on commit 929d4f0

Please sign in to comment.