Skip to content

Commit

Permalink
chore: linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
maschad committed Mar 7, 2023
1 parent 104d3a4 commit d95ccf5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion test/fetch/fetch.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ async function createNode (peerId: PeerId) {
tcp()
],
streamMuxers: [
yamux(),mplex()
yamux(),
mplex()
],
connectionEncryption: [
plaintext()
Expand Down
3 changes: 2 additions & 1 deletion test/utils/base-options.browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ export function createBaseOptions (overrides?: Libp2pOptions): Libp2pOptions {
})
],
streamMuxers: [
yamux(),mplex()
yamux(),
mplex()
],
connectionEncryption: [
plaintext()
Expand Down
3 changes: 2 additions & 1 deletion test/utils/base-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export function createBaseOptions (...overrides: Libp2pOptions[]): Libp2pOptions
tcp()
],
streamMuxers: [
yamux(),mplex()
yamux(),
mplex()
],
connectionEncryption: [
plaintext()
Expand Down

0 comments on commit d95ccf5

Please sign in to comment.