aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/unit/network-contoller-test.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/unit/network-contoller-test.js b/test/unit/network-contoller-test.js
index 46f473af2..76452b303 100644
--- a/test/unit/network-contoller-test.js
+++ b/test/unit/network-contoller-test.js
@@ -1,4 +1,3 @@
-const EventEmitter = require('events')
const assert = require('assert')
const NetworkController = require('../../app/scripts/controllers/network')
@@ -12,7 +11,7 @@ describe('# Network Controller', function () {
},
})
// stub out provider
- networkController._provider = new Proxy(new EventEmitter(), {
+ networkController._provider = new Proxy({}, {
get: (obj, name) => {
return () => {}
},