Skip to content

Commit 82a9425

Browse files
committed
Fixed WhiteSpaces at test/testnet-balance-test.js
1 parent 5ab8dd2 commit 82a9425

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/testnet-balance-test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22
const assert = require('chai').assert;
33
const init = require('../.').init;
44
describe('testnet balance', function () {
5-
it('returns a promise', function () {
6-
var api = init('YourApiKeyToken', 'ropsten');
5+
it('returns a promise', function( ){
6+
var api = init('YourApiKeyToken','ropsten');
77
var balance = api.account.balance('0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae');
88
assert.ok(balance.then);
99
});
1010
it('executes the promise', function (done) {
1111
var api = init('YourApiKeyToken', 'ropsten');
1212
var balance = api.account.balance('0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae');
13-
balance.then(function () {
13+
balance.then(function(){
1414
done();
1515
});
1616
});
1717
it('has data', function (done) {
1818
var api = init('YourApiKeyToken', 'ropsten');
1919
var balance = api.account.balance('0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae');
20-
balance.then(function (res) {
20+
balance.then(function(res){
2121
assert.ok(res);
2222
done();
2323
});

0 commit comments

Comments
 (0)