Skip to content

Commit c747533

Browse files
author
tim
committed
Comply to eslint 🔫
1 parent c25d2ee commit c747533

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

test/connection/test_connection.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava'
22
import sinon from 'sinon'
3-
import * as request from '../../src/request'
3+
import request from '../../src/request'
44
import { Connection } from '../../src'
55

66
const API_PATH = 'http://localhost:9984/api/v1/'

test/integration/test_integration.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ test('Valid TRANSFER transaction with single Ed25519 input', t => {
7171
return conn.postTransaction(transferTxSigned)
7272
.then(({ id }) => conn.pollStatusAndFetchTransaction(id))
7373
.then(resTx => t.truthy(resTx))
74-
})
74+
})
7575
})
7676

7777

@@ -106,5 +106,5 @@ test('Valid TRANSFER transaction with multiple Ed25519 inputs', t => {
106106
return conn.postTransaction(transferTxSigned)
107107
.then(({ id }) => conn.pollStatusAndFetchTransaction(id))
108108
.then(resTx => t.truthy(resTx))
109-
})
109+
})
110110
})

test/transaction/test_transaction.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
import test from 'ava'
2-
import { Transaction, Ed25519Keypair } from '../../src'
2+
import { Transaction } from '../../src'
33
import { _makeTransferTransaction } from '../../src/transaction/makeTransferTransaction'
44
import makeInputTemplate from '../../src/transaction/makeInputTemplate'
55

66
import {
77
alice,
8-
aliceCondition,
98
aliceOutput,
10-
assetMessage,
119
metaDataMessage,
1210
createTx,
1311
transferTx

0 commit comments

Comments
 (0)