Skip to content

Commit

Permalink
Merge branch 'master' into mysql
Browse files Browse the repository at this point in the history
  • Loading branch information
frodopwns authored Apr 3, 2020
2 parents dae21f4 + 8bc085b commit 763b78b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pkg/helpers/helpers_labels_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,19 @@ func TestLabelsToTags(t *testing.T) {
"fun..zone": to.StringPtr("null"),
},
},
{
Name: "question mark labels",
In: map[string]string{
"age?date": "null",
"type?kind": "null",
"fun??zone": "null",
},
Out: map[string]*string{
"age.date": to.StringPtr("null"),
"type.kind": to.StringPtr("null"),
"fun..zone": to.StringPtr("null"),
},
},
{
Name: "percent labels",
In: map[string]string{
Expand Down

0 comments on commit 763b78b

Please sign in to comment.