chore: fix test fail (#1669)

* chore: fix test fail

* fix binduri test fail
This commit is contained in:
thinkerou
2018-12-05 05:58:35 +08:00
committed by GitHub
parent 54e9610400
commit f463d847c2
2 changed files with 4 additions and 3 deletions

View File

@ -687,7 +687,7 @@ func TestUriBinding(t *testing.T) {
}
var not NotSupportStruct
assert.Error(t, b.BindUri(m, &not))
assert.Equal(t, "", not.Name)
assert.Equal(t, map[string]interface{}(nil), not.Name)
}
func testFormBinding(t *testing.T, method, path, badPath, body, badBody string) {