diff options
author | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2024-01-29 13:00:42 +0300 |
---|---|---|
committer | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2024-01-29 13:00:42 +0300 |
commit | 20e6d2558e868d61d7168ffe5ca4f3bff0a240c7 (patch) | |
tree | 4be00780eb2fe931f824dc83ef018f1df320d343 /persistence | |
parent | 3a60a1cfaa9329e4c89b8c160892dda75de6c560 (diff) |
Version 1.9.0v1.9.0
Diffstat (limited to 'persistence')
-rw-r--r-- | persistence/sessions_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/persistence/sessions_test.go b/persistence/sessions_test.go index 8ca6f4f..0339378 100644 --- a/persistence/sessions_test.go +++ b/persistence/sessions_test.go @@ -48,6 +48,7 @@ func TestSessionToMap(t *testing.T) { Timezone: "klsf", RawMessages: true, OOBMode: true, + Receipts: true, } m := session.ToMap() sample := map[string]string{ @@ -58,6 +59,8 @@ func TestSessionToMap(t *testing.T) { "oobmode": "true", "carbons": "false", "hideids": "false", + "receipts": "true", + "nativeedits": "false", } if !reflect.DeepEqual(m, sample) { t.Errorf("Map does not match the sample: %v", m) |