Skip to content

Commit

Permalink
Fixups after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
sidecut committed Jan 25, 2022
1 parent 83dde4a commit 63f9104
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pubsub_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func TestMultiSubOnceEach(t *testing.T) {
}

func TestMultiSubCombined(t *testing.T) {
ps := New(6)
ps := New[string](6)

ch1 := ps.Sub("t1", "t2")
ch2 := ps.SubOnce("t1", "t2")
Expand All @@ -176,7 +176,7 @@ func TestMultiSubCombined(t *testing.T) {
}

func TestPubWithoutSub(t *testing.T) {
ps := New(1)
ps := New[string](1)
ps.Pub("hi", "t1")
ps.Shutdown()
}
Expand Down

0 comments on commit 63f9104

Please sign in to comment.