Verify updatePetWithForm in Go client (#1212)

* verify updatePetWithForm in go client

* update wording
This commit is contained in:
William Cheng 2018-10-11 15:40:43 +08:00 committed by GitHub
parent 529a638d11
commit 32c1d9eea4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -87,6 +87,9 @@ func TestUpdatePetWithForm(t *testing.T) {
if r.StatusCode != 200 {
t.Log(r)
}
// get the pet with id 12830 from server to verify the update
isPetCorrect(t, 12830, "golang", "available")
}
func TestFindPetsByTag(t *testing.T) {
@ -301,3 +304,4 @@ func isPetCorrect(t *testing.T, id int64, name string, status string) {
t.Log(r)
}
}