Skip to content

Commit

Permalink
fix: lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayteekay committed Jul 4, 2024
1 parent 6cee2a4 commit 6c000bb
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions packages/wasm/src/services/credential/pex-helpers.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { format } from 'winston';
import { getPexRequiredAttributes, pexToBounds } from './pex-helpers';
import {getPexRequiredAttributes, pexToBounds} from './pex-helpers';

describe('pex helpers', () => {
describe('getPexRequiredAttributes', () => {
Expand Down Expand Up @@ -216,7 +215,7 @@ describe('pex helpers', () => {
{
filter: {
format: 'date',
minimum: "2021-01-01",
minimum: '2021-01-01',
},
path: ['$.dateOfBirth'],
},
Expand All @@ -239,7 +238,7 @@ describe('pex helpers', () => {
},
{
attributeName: 'dateOfBirth',
min: new Date("2021-01-01"),
min: new Date('2021-01-01'),
max: new Date(884541351600000),
type: undefined,
format: 'date',
Expand Down Expand Up @@ -411,4 +410,4 @@ describe('pex helpers', () => {
expect(bounds).toEqual([]);
});
});
});
});

0 comments on commit 6c000bb

Please sign in to comment.