Skip to content

Commit

Permalink
fix: update date format on flaky tests (#1087)
Browse files Browse the repository at this point in the history
  • Loading branch information
brobro10000 authored May 22, 2024
1 parent 2a50e8a commit df5ed42
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { useEnterpriseCustomer } from '../../../app/data';
import { authenticatedUserFactory, enterpriseCustomerFactory } from '../../../app/data/services/data/__factories__';

const TEST_EXPIRATION_DATE = dayjs().add(10, 'days').toISOString();
const TEST_EXPIRATION_DATE_TEXT = dayjs().add(10, 'days').format('MMM DD, YYYY');
const TEST_EXPIRATION_DATE_TEXT = dayjs().add(10, 'days').format('MMM D, YYYY');
const mockActiveStatusMetadata = {
status: BUDGET_STATUSES.active,
badgeVariant: 'success',
Expand Down

0 comments on commit df5ed42

Please sign in to comment.