Skip to content

Commit

Permalink
Comply to eslint 🔫
Browse files Browse the repository at this point in the history
  • Loading branch information
tim committed Jun 20, 2017
1 parent c25d2ee commit c747533
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/connection/test_connection.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava'
import sinon from 'sinon'
import * as request from '../../src/request'
import request from '../../src/request'
import { Connection } from '../../src'

const API_PATH = 'http://localhost:9984/api/v1/'
Expand Down
4 changes: 2 additions & 2 deletions test/integration/test_integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ test('Valid TRANSFER transaction with single Ed25519 input', t => {
return conn.postTransaction(transferTxSigned)
.then(({ id }) => conn.pollStatusAndFetchTransaction(id))
.then(resTx => t.truthy(resTx))
})
})
})


Expand Down Expand Up @@ -106,5 +106,5 @@ test('Valid TRANSFER transaction with multiple Ed25519 inputs', t => {
return conn.postTransaction(transferTxSigned)
.then(({ id }) => conn.pollStatusAndFetchTransaction(id))
.then(resTx => t.truthy(resTx))
})
})
})
4 changes: 1 addition & 3 deletions test/transaction/test_transaction.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import test from 'ava'
import { Transaction, Ed25519Keypair } from '../../src'
import { Transaction } from '../../src'
import { _makeTransferTransaction } from '../../src/transaction/makeTransferTransaction'
import makeInputTemplate from '../../src/transaction/makeInputTemplate'

import {
alice,
aliceCondition,
aliceOutput,
assetMessage,
metaDataMessage,
createTx,
transferTx
Expand Down

0 comments on commit c747533

Please sign in to comment.