Fix expected version in test

This commit is contained in:
Fabio Berger
2018-06-22 10:47:38 +02:00
parent 3ce295a2af
commit 018cc14a87

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);
});
});