Skip to content

Commit

Permalink
fix tests names
Browse files Browse the repository at this point in the history
  • Loading branch information
cdvr1993 committed Dec 8, 2023
1 parent 7503e88 commit c0da462
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions baggage/baggage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func init() {
rng = rand.New(rand.NewSource(1))
}

func TestKeyValidChar(t *testing.T) {
func TestValidateKeyChar(t *testing.T) {
// ASCII only
invalidKeyRune := []rune{
'\x00', '\x01', '\x02', '\x03', '\x04', '\x05', '\x06', '\x07',
Expand All @@ -48,7 +48,7 @@ func TestKeyValidChar(t *testing.T) {
}
}

func TestValueValidChar(t *testing.T) {
func TestValidateValueChar(t *testing.T) {
// ASCII only
invalidValueRune := []rune{
'\x00', '\x01', '\x02', '\x03', '\x04', '\x05', '\x06', '\x07',
Expand Down

0 comments on commit c0da462

Please sign in to comment.