From 081ecb15857626f8b531141b9058f30880ebc86f Mon Sep 17 00:00:00 2001 From: Denis Gukov Date: Thu, 19 Dec 2024 01:03:58 +0500 Subject: [PATCH] test: fix test --- db/bolt/BoltDb_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/bolt/BoltDb_test.go b/db/bolt/BoltDb_test.go index ae72e911..0edc7517 100644 --- a/db/bolt/BoltDb_test.go +++ b/db/bolt/BoltDb_test.go @@ -68,7 +68,7 @@ func TestUnmarshalObject(t *testing.T) { "last_name": "Gukov", "password": "9347502348723" }` - err := unmarshalObject([]byte(data), &test1) + err := unmarshalObject([]byte(data), &test1, nil) require.NoError(t, err) assert.Equal(t, "Denis", test1.FirstName)