Merge pull request #2171 from wing328/php_test_memory_limit

[PHP] update php test case with higher memory limit
This commit is contained in:
wing328
2016-02-18 20:03:50 +08:00

View File

@@ -2,6 +2,10 @@
require_once('autoload.php');
// increase memory limit to avoid fatal error due to findPetByStatus
// returning a lot of data
ini_set('memory_limit', '256M');
class PetApiTest extends \PHPUnit_Framework_TestCase
{