Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
LiranCohen committed Jun 4, 2024
1 parent 618dcf3 commit 812aeb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/features/permissions.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ import chai, { expect } from 'chai';
import { DataStream } from '../../src/utils/data-stream.js';
import { Dwn } from '../../src/dwn.js';
import { Jws } from '../../src/utils/jws.js';
import { PermissionGrant } from '../../src/protocols/permission-grant.js';
import { PermissionsProtocol } from '../../src/protocols/permissions.js';
import { RecordsRead } from '../../src/interfaces/records-read.js';
import { TestDataGenerator } from '../utils/test-data-generator.js';
import { TestEventStream } from '../test-event-stream.js';
import { TestStores } from '../test-stores.js';
import { DidKey, UniversalResolver } from '@web5/dids';
import { DwnErrorCode, DwnInterfaceName, DwnMethodName, Encoder, RecordsQuery, RecordsWrite, Time } from '../../src/index.js';
import { PermissionGrant } from '../../src/protocols/permission-grant.js';

chai.use(chaiAsPromised);

Expand Down Expand Up @@ -226,7 +226,7 @@ export function testPermissions(): void {
});

const grant = await PermissionGrant.parse(dataEncodedMessage);

// check parse grant properties
expect(grant.id).to.equal(dataEncodedMessage.recordId);
expect(grant.grantor).to.equal(alice.did);
Expand Down

0 comments on commit 812aeb4

Please sign in to comment.