Skip to content

Commit

Permalink
Revert BaseTest to original
Browse files Browse the repository at this point in the history
  • Loading branch information
rlew421 committed Jul 17, 2023
1 parent fb9c199 commit d738e4b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Test/BaseTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -249,9 +249,7 @@ public List<SubscriptionRampInterval> GetMockSubscriptionRampIntervals(int numbe
var rampInterval = new SubscriptionRampInterval()
{
StartingBillingCycle = (i == 0) ? 1 : i + 2,
UnitAmountInCents = (numberOfRamps * 100) * (i + 1),
StartingOn = (i == 0) ? $"2024-01-12T15:38:05Z" : $"2024-0{i+2}-12T15:38:05Z",
EndingOn = $"2024-0{StartingOn + 1}-12T15:38:05Z"
UnitAmountInCents = (numberOfRamps * 100) * (i + 1)
};
rampIntervals.Add(rampInterval);
}
Expand Down

0 comments on commit d738e4b

Please sign in to comment.