From 06d8c92504b636619c08506f3e893f1b884a0f87 Mon Sep 17 00:00:00 2001 From: Julien Tant <785518+JulienTant@users.noreply.github.com> Date: Thu, 13 Feb 2025 20:14:08 -0700 Subject: [PATCH] Using StringInterface instead of mapStringAny (#30211) --- server/public/model/property_field_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/public/model/property_field_test.go b/server/public/model/property_field_test.go index eac0adc211..ff9c143831 100644 --- a/server/public/model/property_field_test.go +++ b/server/public/model/property_field_test.go @@ -145,7 +145,7 @@ func TestPropertyField_Patch(t *testing.T) { Type: NewPointer(PropertyFieldTypeSelect), TargetID: NewPointer("new_target"), TargetType: NewPointer("new_type"), - Attrs: &map[string]any{"key": "value"}, + Attrs: &StringInterface{"key": "value"}, } pf.Patch(patch)