aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/tests/unit_tests/SecureEndToEndTest.php
diff options
context:
space:
mode:
authorGravatar ZhouyihaiDing <ddyihai@google.com>2018-04-09 13:20:31 -0700
committerGravatar ZhouyihaiDing <ddyihai@google.com>2018-04-12 14:01:59 -0700
commit5c77035e57f2590245bd06372e53964a17ab5d96 (patch)
tree62e917fbf3e82f8d85ed0dbde26275137d6284d3 /src/php/tests/unit_tests/SecureEndToEndTest.php
parenta9b6740d13557f5835414cea542a9a706903b470 (diff)
PHP: use persistent list not shared by other modules
Diffstat (limited to 'src/php/tests/unit_tests/SecureEndToEndTest.php')
-rw-r--r--src/php/tests/unit_tests/SecureEndToEndTest.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/php/tests/unit_tests/SecureEndToEndTest.php b/src/php/tests/unit_tests/SecureEndToEndTest.php
index dff4e878ea..e358abe2d2 100644
--- a/src/php/tests/unit_tests/SecureEndToEndTest.php
+++ b/src/php/tests/unit_tests/SecureEndToEndTest.php
@@ -44,6 +44,9 @@ class SecureEndToEndTest extends PHPUnit_Framework_TestCase
public function tearDown()
{
$this->channel->close();
+ $channel_clean_persistent =
+ new Grpc\Channel('localhost:50010', []);
+ $channel_clean_persistent->cleanPersistentList();
}
public function testSimpleRequestBody()