Skip to content

Commit

Permalink
Fix linting errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlongley committed Mar 18, 2024
1 parent 5148646 commit a263230
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions test/Ed25519Multikey.spec.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*!
* Copyright (c) 2020-2022 Digital Bazaar, Inc. All rights reserved.
* Copyright (c) 2020-2024 Digital Bazaar, Inc. All rights reserved.
*/
import chai from 'chai';
import * as base58btc from 'base58-universal';
import {mockKey, seed} from './mock-data.js';
import chai from 'chai';
import multibase from 'multibase';
import multicodec from 'multicodec';
const should = chai.should();
Expand Down
4 changes: 2 additions & 2 deletions test/compatibility.spec.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/*!
* Copyright (c) 2020-2022 Digital Bazaar, Inc. All rights reserved.
* Copyright (c) 2020-2024 Digital Bazaar, Inc. All rights reserved.
*/
import chai from 'chai';
chai.should();

import * as Ed25519Multikey from '../lib/index.js';
import {stringToUint8Array} from './text-encoder.js';
import * as StableLibEd25519 from '@stablelib/ed25519';
import {randomBytes} from 'node:crypto';
import {stringToUint8Array} from './text-encoder.js';

import {promisify} from 'node:util';

Expand Down
4 changes: 2 additions & 2 deletions test/sign-verify.spec.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/*!
* Copyright (c) 2020 Digital Bazaar, Inc. All rights reserved.
* Copyright (c) 2020-2024 Digital Bazaar, Inc. All rights reserved.
*/
import chai from 'chai';
chai.should();

import * as base58btc from 'base58-universal';
import * as Ed25519Multikey from '../lib/index.js';
import {mockKey, suites} from './mock-data.js';
import {stringToUint8Array} from './text-encoder.js';
import * as base58btc from 'base58-universal';

const keyPair = await Ed25519Multikey.from({
controller: 'did:example:1234',
Expand Down

0 comments on commit a263230

Please sign in to comment.