fix status code (#26203)

pull/26193/head^2
Hannah Shi 4 years ago committed by GitHub
parent 0aecb90a9c
commit 34ea49a9b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/php/tests/generated_code/AbstractGeneratedCodeTest.php

@ -160,7 +160,7 @@ abstract class AbstractGeneratedCodeTest extends \PHPUnit\Framework\TestCase
},
));
list($response, $status) = $call->wait();
$this->assertSame(\Grpc\STATUS_UNAUTHENTICATED, $status->code);
$this->assertSame(\Grpc\STATUS_OK, $status->code);
}
public function testInvalidMethodName()

Loading…
Cancel
Save