Fix web3wrapper node version test

This commit is contained in:
Amir Bandeali
2019-03-18 13:07:19 -07:00
parent b008fabdac
commit a401b8f475

View File

@@ -35,7 +35,7 @@ describe('Web3Wrapper tests', () => {
describe('#getNodeVersionAsync', () => {
it('gets the node version', async () => {
const nodeVersion = await web3Wrapper.getNodeVersionAsync();
const NODE_VERSION = 'EthereumJS TestRPC/v2.3.3/ethereum-js';
const NODE_VERSION = 'EthereumJS TestRPC/v2.5.3/ethereum-js';
expect(nodeVersion).to.be.equal(NODE_VERSION);
});
});