From 91659e5e6ca412874407125b726e046cb7ff89db Mon Sep 17 00:00:00 2001 From: Jeff Thompson Date: Mon, 16 Oct 2023 09:41:54 +0200 Subject: [PATCH] chore: In comments_test.go, expect snake_case field names. Signed-off-by: Jeff Thompson --- tm2/pkg/amino/genproto/comments_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tm2/pkg/amino/genproto/comments_test.go b/tm2/pkg/amino/genproto/comments_test.go index 2294dfe42de..5e87663fdc9 100644 --- a/tm2/pkg/amino/genproto/comments_test.go +++ b/tm2/pkg/amino/genproto/comments_test.go @@ -48,14 +48,14 @@ option go_package = "github.com/gnolang/gno/tm2/pkg/amino/genproto/pb"; // message comment message TestMessageName { // field comment 1 - string FieldName1 = 1; + string field_name1 = 1; // field comment 2 - repeated uint64 FieldName2 = 2; + repeated uint64 field_name2 = 2; } // message comment 2 message TestMessageName2 { // another field comment - string FieldName = 1; + string field_name = 1; }`) }