Skip to content

Commit

Permalink
Address the review comments. (#4)
Browse files Browse the repository at this point in the history
Signed-off-by: harshit-sp <[email protected]>
  • Loading branch information
harshit-sp authored Feb 4, 2024
1 parent 1470f26 commit 2678754
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internal/impl/kv/processor_kv_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ func TestKVProcessor(t *testing.T) {
},
{
name: "empty pair and key-value delimiter",
input: "key1=val1|key2=value2|key3=val3",
pairDelimiter: "",
keyValueSeparator: "",
input: "key1,val1 key2,value2 key3,val3",
pairDelimiter: "\\|",
keyValueSeparator: "=",
output: map[string]string{
"original_message": "key1=val1|key2=value2|key3=val3",
"original_message": "key1,val1 key2,value2 key3,val3",
},
},
}
Expand Down

0 comments on commit 2678754

Please sign in to comment.