aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--eventer/eventer_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/eventer/eventer_test.go b/eventer/eventer_test.go
index b35267af6..6891622e3 100644
--- a/eventer/eventer_test.go
+++ b/eventer/eventer_test.go
@@ -3,7 +3,7 @@ package eventer
import "testing"
func TestChannel(t *testing.T) {
- eventer := New(nil)
+ eventer := New()
c := make(Channel, 1)
eventer.RegisterChannel("test", c)
@@ -17,7 +17,7 @@ func TestChannel(t *testing.T) {
}
func TestFunction(t *testing.T) {
- eventer := New(nil)
+ eventer := New()
var data string
eventer.RegisterFunc("test", func(ev Event) {
@@ -31,7 +31,7 @@ func TestFunction(t *testing.T) {
}
func TestRegister(t *testing.T) {
- eventer := New(nil)
+ eventer := New()
c := eventer.Register("test")
eventer.Post("test", "hello world")
@@ -44,7 +44,7 @@ func TestRegister(t *testing.T) {
}
func TestOn(t *testing.T) {
- eventer := New(nil)
+ eventer := New()
c := make(Channel, 1)
eventer.On("test", c)