Skip to content

Commit

Permalink
fix: update correct period
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydamani committed Jul 23, 2024
1 parent e6fe8b6 commit 918eda0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/SubscriptionUtilsTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const billingGraceEndPeriod: BillingGraceEndPeriod = {
value: 0,
};

Check failure on line 14 in tests/unit/SubscriptionUtilsTest.ts

View workflow job for this annotation

GitHub Actions / Run ESLint

Replace `*` with `·*·`

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

const AMOUNT_OWED = 100;
const STRIPE_CUSTOMER_ID: StripeCustomerID = {
Expand Down

0 comments on commit 918eda0

Please sign in to comment.