quickfix: ethUtils test "sanitizeHex" fix

sanitizeHex expects only strings
pull/211/head
Szymon Lesisz 6 years ago
parent 63bfe4c6b9
commit b48b197003

@ -27,7 +27,7 @@ describe('eth utils', () => {
});
it('sanitizeHex', () => {
const input = ['0x2540be3ff', '1', '2', '100', 999, ''];
const input = ['0x2540be3ff', '1', '2', '100', '999', ''];
input.forEach((entry) => {
expect(ethUtils.sanitizeHex(entry)).toMatchSnapshot();

Loading…
Cancel
Save