Skip to content

Commit

Permalink
chore: In comments_test.go, expect snake_case field names.
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Thompson <[email protected]>
  • Loading branch information
jefft0 committed Oct 25, 2023
1 parent 0d4c53e commit 91659e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tm2/pkg/amino/genproto/comments_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}`)
}

0 comments on commit 91659e5

Please sign in to comment.