From d0d0b66f98681e0784772fba053c3b4dcdd78898 Mon Sep 17 00:00:00 2001 From: Roman Atachiants Date: Fri, 10 Sep 2021 18:06:11 +0400 Subject: [PATCH] test --- txn_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/txn_test.go b/txn_test.go index 685a782..4778a79 100644 --- a/txn_test.go +++ b/txn_test.go @@ -478,7 +478,7 @@ func TestUpdateAt(t *testing.T) { }) assert.NoError(t, c.UpdateAt(index, "col1", func(v Cursor) error { - v.SetString("hi") + v.Set("hi") return nil }))