Skip to content

Commit

Permalink
clean up linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
LiranCohen committed Apr 24, 2024
1 parent 15ebb58 commit b5cc976
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion packages/dids/tests/resolver/resolver-cache-level.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import sinon from 'sinon';
import { expect } from 'chai';
import { Level } from 'level';

import type { DidResolutionResult } from '../../src/types/did-core.js';
import type { CachedDidResolutionResult, DidResolver, DidResolverCache } from '../../src/types/did-resolution.js';

import { DidJwk } from '../../src/methods/did-jwk.js';
Expand Down
6 changes: 3 additions & 3 deletions packages/dids/tests/resolver/universal-resolver.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ describe('UniversalResolver', () => {
const resolveAndCacheSpy = sinon.spy(didResolver as any, 'resolveAndCache');

const staleResults = {
isStaleInCache: true,
didResolutionMetadata: {},
didDocument: {
isStaleInCache : true,
didResolutionMetadata : {},
didDocument : {
id: 'did:jwk:123456789abcdefghi'
},
didDocumentMetadata: {}
Expand Down

0 comments on commit b5cc976

Please sign in to comment.