Skip to content

Commit

Permalink
Fix parameters encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
kzaitsev committed Nov 21, 2014
1 parent e8a88d3 commit e4eac78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ import (
)

func TestParameterEncoding(t *testing.T) {
assert.Equal(t, encodeParameter("namespace/project"), "namespace\%2Fproject")
assert.Equal(t, encodeParameter("namespace/project"), "namespace%2Fproject")
assert.Equal(t, encodeParameter("14"), "14")
}

0 comments on commit e4eac78

Please sign in to comment.