From 4a134047a4671b8ec263d9b99f2765e78641a6c4 Mon Sep 17 00:00:00 2001 From: ZhouyihaiDing Date: Fri, 13 Apr 2018 13:58:44 -0700 Subject: PHP: fix persistentChannelTest error --- src/php/tests/unit_tests/PersistentChannelTest.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/php/tests/unit_tests/PersistentChannelTest.php b/src/php/tests/unit_tests/PersistentChannelTest.php index 31c6bbaf40..171780a137 100644 --- a/src/php/tests/unit_tests/PersistentChannelTest.php +++ b/src/php/tests/unit_tests/PersistentChannelTest.php @@ -42,6 +42,11 @@ class PersistentListTest extends PHPUnit_Framework_TestCase $this->assertTrue(false); } + public function assertConnecting($state) { + $this->assertTrue($state == GRPC\CHANNEL_CONNECTING || + $state == GRPC\CHANNEL_TRANSIENT_FAILURE); + } + public function testPersistentChennelCreateOneChannel() { $this->channel1 = new Grpc\Channel('localhost:1', []); @@ -66,8 +71,7 @@ class PersistentListTest extends PHPUnit_Framework_TestCase $this->waitUntilNotIdle($this->channel1); $plist = $this->channel1->getPersistentList(); - $this->assertEquals($plist['localhost:1']['connectivity_status'], - GRPC\CHANNEL_CONNECTING); + $this->assertConnecting($plist['localhost:1']['connectivity_status']); $this->assertEquals($plist['localhost:1']['is_valid'], 1); $this->channel1->close(); -- cgit v1.2.3