remove leading space for path variable, update unit test

This commit is contained in:
wing328
2015-07-20 10:43:08 +08:00
parent a863e538a8
commit 596bde2ef6
51 changed files with 88752 additions and 231 deletions

View File

@@ -45,7 +45,7 @@ namespace SwaggerClient.TestPet
{
// remove the pet after testing
PetApi petApi = new PetApi ();
petApi.DeletePet("test key", petId);
petApi.DeletePet(petId, "test key");
}