From 751b4cd8327b5b36bed26d69835e01e94bf7a07c Mon Sep 17 00:00:00 2001 From: wing328 Date: Wed, 20 Jan 2016 21:46:10 +0800 Subject: [PATCH] remove var_dump --- .../client/petstore/php/SwaggerClient-php/tests/PetApiTest.php | 1 - 1 file changed, 1 deletion(-) diff --git a/samples/client/petstore/php/SwaggerClient-php/tests/PetApiTest.php b/samples/client/petstore/php/SwaggerClient-php/tests/PetApiTest.php index 1ea7cfa2d03..58f4ca7b65d 100644 --- a/samples/client/petstore/php/SwaggerClient-php/tests/PetApiTest.php +++ b/samples/client/petstore/php/SwaggerClient-php/tests/PetApiTest.php @@ -155,7 +155,6 @@ class PetApiTest extends \PHPUnit_Framework_TestCase $pet_api = new Swagger\Client\Api\PetAPI($api_client); // return Pet (model) $response = $pet_api->findPetsByTags("test php tag"); - var_dump($response); $this->assertGreaterThan(0, count($response)); // at least one object returned $this->assertSame(get_class($response[0]), "Swagger\\Client\\Model\\Pet"); // verify the object is Pet // loop through result to ensure status is "available"