Skip to content

Commit

Permalink
fix test case for AzureStack (Azure#6977)
Browse files Browse the repository at this point in the history
  • Loading branch information
erich-wang authored Jul 26, 2019
1 parent 2bb0461 commit 3fc2af7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void TestListSubscriberUsageAggregatesFromLastTwoDays()
var testDate = new DateTime(2017, 09, 06);
testDate = DateTime.SpecifyKind(testDate, DateTimeKind.Utc);
var start = testDate.Floor();
var end = start.AddDays(1).Floor();
var end = testDate.AddDays(1).Floor();

// You need to do this. ARM does this and you need to make
// sure you work with ARM.
Expand Down

0 comments on commit 3fc2af7

Please sign in to comment.