Skip to content

Commit

Permalink
fix: test case for camel case
Browse files Browse the repository at this point in the history
  • Loading branch information
abhimanyu003 committed Feb 10, 2024
1 parent 7037184 commit 8ad5694
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions processors/strings_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ func TestStringToCamel(t *testing.T) {
}, {
name: "String Uppercase",
args: args{data: []byte("THE QUICK BROWN FOX JUMPS OVER A LAZY DOG")},
want: "THEQUICKBROWNFOXJUMPSOVERALAZYDOG",
want: "TheQuickBrownFoxJumpsOverALazyDog",
},
{
name: "Camel Case Text",
Expand All @@ -770,7 +770,7 @@ func TestStringToCamel(t *testing.T) {
{
name: "Underscore text uppercase",
args: args{data: []byte("UNDERSCORE_TEXT_UPPER_CASE")},
want: "UNDERSCORETEXTUPPERCASE",
want: "UnderscoreTextUpperCase",
},
}
for _, tt := range tests {
Expand Down

0 comments on commit 8ad5694

Please sign in to comment.