aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMarek Kotewicz <marek.kotewicz@gmail.com>2015-01-31 22:22:05 +0800
committerMarek Kotewicz <marek.kotewicz@gmail.com>2015-01-31 22:22:05 +0800
commitb20e972bec52781de806fb050e72d44b729c6541 (patch)
tree0d8114da1536ae5ec6c2c606a30e1ae4c2cb311f /test
parenta8a2e3231c2ced50989dc5d23659f7482a667f69 (diff)
downloadgo-tangerine-b20e972bec52781de806fb050e72d44b729c6541.tar.gz
go-tangerine-b20e972bec52781de806fb050e72d44b729c6541.tar.zst
go-tangerine-b20e972bec52781de806fb050e72d44b729c6541.zip
few methods moved to utils
Diffstat (limited to 'test')
-rw-r--r--test/utils.filters.js (renamed from test/abi.filters.js)8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/abi.filters.js b/test/utils.filters.js
index 42385fd2a..f2d2788b0 100644
--- a/test/abi.filters.js
+++ b/test/utils.filters.js
@@ -1,7 +1,7 @@
var assert = require('assert');
-var abi = require('../lib/abi.js');
+var utils = require('../lib/utils.js');
-describe('abi', function() {
+describe('utils', function() {
it('should filter functions and events from input array properly', function () {
// given
@@ -36,8 +36,8 @@ describe('abi', function() {
}];
// when
- var events = abi.filterEvents(description);
- var functions = abi.filterFunctions(description);
+ var events = utils.filterEvents(description);
+ var functions = utils.filterFunctions(description);
// then
assert.equal(events.length, 1);