mirror of
https://github.com/grpc/grpc-node.git
synced 2025-12-08 18:23:54 +00:00
Remove status message check from node interop client
The node interop client was checking that the status message for the test unimplemented_method was an empty string. This behavior is not guaranteed, and thus the check should be removed.
This commit is contained in:
parent
6d754b22c5
commit
ef116f0085
@ -380,7 +380,6 @@ function unimplementedService(client, done) {
|
||||
client.unimplementedCall({}, function(err, resp) {
|
||||
assert(err);
|
||||
assert.strictEqual(err.code, grpc.status.UNIMPLEMENTED);
|
||||
assert(!err.message);
|
||||
done();
|
||||
});
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user