Fix version test

This commit is contained in:
fabioberger 2019-07-27 15:35:39 +02:00
parent f560c2e66a
commit 2eca95df00

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.5.3/ethereum-js';
const NODE_VERSION = 'EthereumJS TestRPC/v2.6.0/ethereum-js';
expect(nodeVersion).to.be.equal(NODE_VERSION);
});
});