Skip to content

Commit e2d3a3a

Browse files
Run go fmt ./...
Apply standard Go formatting to `types_test.go` to ensure code style consistency. This mainly adjusted whitespace alignment in the `TestUpperCaseWord_Verbatim_Bug` function.
1 parent c9e26e1 commit e2d3a3a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

types_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ func TestUpperCaseWord_Verbatim_Bug(t *testing.T) {
538538
input := "HELLO"
539539

540540
// Case 1: Default (SmartAcronyms=true)
541-
words1, _ := Parse(input) // [AcronymWord("HELLO")]
541+
words1, _ := Parse(input) // [AcronymWord("HELLO")]
542542
res1, _ := ToSnakeCase(words1) // ToSnakeCase defaults to Verbatim (but with delimiter "_")
543543
// AcronymWord preserves case by default.
544544
if res1 != "HELLO" {

0 commit comments

Comments
 (0)