Fix web3-wrapper test

This commit is contained in:
Fabio Berger 2018-06-22 12:32:12 +02:00
parent 82ccfa21e1
commit c46e11cae2

View File

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