Skip to content

Commit

Permalink
Singleton VS New Object
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Eyrick authored Jun 10, 2018
1 parent 0fe9352 commit 4e6601c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ const TIMEOUT = 10000;
let chai = require( 'chai' );
let assert = chai.assert;
let path = require( 'path' );
let binance = require( path.resolve( __dirname, 'node-binance-api.js' ) );
let Binance = require( path.resolve( __dirname, 'node-binance-api.js' ) );
let binance = new Binance();
let util = require( 'util' );

let num_pairs = 299;
Expand Down

0 comments on commit 4e6601c

Please sign in to comment.