diff options
| author | Joop Kiefte <ikojba@gmail.com> | 2021-12-11 00:26:04 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-11 00:26:04 +0000 |
| commit | 06855381f1a6e6fcd6a92b8e78ced65c45936673 (patch) | |
| tree | aeec2c7706001fc4580659bda3c1497011bba7c3 | |
| parent | 7f5a5cd7487faea09fd13caba0303dcf4ade0f85 (diff) | |
Change test to match new function signature
| -rw-r--r-- | message/message_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/message/message_test.go b/message/message_test.go index fe3152b..06f1bc7 100644 --- a/message/message_test.go +++ b/message/message_test.go @@ -13,6 +13,6 @@ func TestMessageTimeout(t *testing.T) { time.AfterFunc(10*time.Second, func() { t.Error("Test timed out") }) - _ = message.New("Hello World!", 16) + _ = message.New("Hello World!", 16, time.Now().Unix()) // Success } |
