aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/tests/unit_tests/CallTest.php
diff options
context:
space:
mode:
authorGravatar Zhouyihai Ding <ddyihai@google.com>2018-04-13 09:48:12 -0700
committerGravatar GitHub <noreply@github.com>2018-04-13 09:48:12 -0700
commitbe03078e1091e57b2367e03dae6fe799ff84593e (patch)
treecf7dcded21f29e6feee7bfde44d03fd88afe4618 /src/php/tests/unit_tests/CallTest.php
parentd184fa229d75d336aedea0041bd59cb93e7e267f (diff)
parent5c77035e57f2590245bd06372e53964a17ab5d96 (diff)
Merge pull request #14991 from ZhouyihaiDing/pr_persistent_channel
PHP: change persistent_list to the map owned by gRPC itself
Diffstat (limited to 'src/php/tests/unit_tests/CallTest.php')
-rw-r--r--src/php/tests/unit_tests/CallTest.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/php/tests/unit_tests/CallTest.php b/src/php/tests/unit_tests/CallTest.php
index c5e1890a98..38c36ed19a 100644
--- a/src/php/tests/unit_tests/CallTest.php
+++ b/src/php/tests/unit_tests/CallTest.php
@@ -38,6 +38,9 @@ class CallTest extends PHPUnit_Framework_TestCase
public function tearDown()
{
$this->channel->close();
+ $channel_clean_persistent =
+ new Grpc\Channel('localhost:50010', []);
+ $channel_clean_persistent->cleanPersistentList();
}
public function testConstructor()