From 2b1daf530d98356e69675d230767713f81b6c813 Mon Sep 17 00:00:00 2001
From: "Richard T. Carback III" <rick.carback@gmail.com>
Date: Fri, 23 Sep 2022 21:36:51 +0000
Subject: [PATCH] Make the test compile even if it will likely still fail

---
 indexedDb/implementation_test.go | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/indexedDb/implementation_test.go b/indexedDb/implementation_test.go
index a4d5d0bd..f29e645a 100644
--- a/indexedDb/implementation_test.go
+++ b/indexedDb/implementation_test.go
@@ -37,7 +37,8 @@ func TestWasmModel_UpdateSentStatus(t *testing.T) {
 
 	// Store a test message
 	testMsg := buildMessage([]byte(testString), testMsgId.Bytes(),
-		nil, testString, testString, time.Now(), time.Second, channels.Sent)
+		nil, testString, testString, nil, time.Now(),
+		time.Second, channels.Sent)
 	err = eventModel.receiveHelper(testMsg)
 	if err != nil {
 		t.Fatalf("%+v", err)
-- 
GitLab