diff options
Diffstat (limited to 'test/event.js')
-rw-r--r-- | test/event.js | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/test/event.js b/test/event.js index 0cc9c0c65..781f42e5e 100644 --- a/test/event.js +++ b/test/event.js @@ -7,13 +7,9 @@ describe('event', function () { // given var address = '0x012345'; var signature = '0x987654'; - var e = { - name: 'test', - type: 'event', - }; // when - var impl = event(e, address, signature); + var impl = event(address, signature); var result = impl(); // then @@ -23,3 +19,4 @@ describe('event', function () { }); }); + |