From: Siraaj Khandkar Date: Sat, 27 Mar 2021 20:56:30 +0000 (-0400) Subject: Fix missing mentions field in test Msg construction X-Git-Tag: 0.19.2 X-Git-Url: https://git.xandkar.net/?p=tt.git;a=commitdiff_plain;h=a139076c658d1569033a075072836688d949f7ca Fix missing mentions field in test Msg construction --- diff --git a/info.rkt b/info.rkt index ea0ad4d..2b1ab2d 100644 --- a/info.rkt +++ b/info.rkt @@ -6,7 +6,7 @@ (define pkg-desc "twtxt client") (define version - "0.19.1") + "0.19.2") (define pkg-authors '("Siraaj Khandkar ")) (define deps diff --git a/tt.rkt b/tt.rkt index 5718783..afc94f6 100644 --- a/tt.rkt +++ b/tt.rkt @@ -207,7 +207,7 @@ [nick "foo"] [uri "bar"] [actual (str->msg nick uri (string-append ts tab text))] - [expected (Msg 1605756129 ts nick uri text)]) + [expected (Msg 1605756129 ts nick uri text '())]) (check-equal? (Msg-ts-epoch actual) (Msg-ts-epoch expected)