Skip to content

Commit

Permalink
Merge pull request #46050 from jaydamani/fix/subscriptionUtilsTest
Browse files Browse the repository at this point in the history
fix(tests/SubscriptionUtils): update time for testing non-overdue
  • Loading branch information
mountiny authored Jul 25, 2024
2 parents 34531ae + 2204074 commit 828e8c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/SubscriptionUtilsTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const billingGraceEndPeriod: BillingGraceEndPeriod = {
value: 0,
};

const GRACE_PERIOD_DATE = new Date().getTime() + 1000;
const GRACE_PERIOD_DATE = new Date().getTime() + 1000 * 3600;
const GRACE_PERIOD_DATE_OVERDUE = new Date().getTime() - 1000;

const AMOUNT_OWED = 100;
Expand Down

0 comments on commit 828e8c0

Please sign in to comment.