Skip to content
Snippets Groups Projects
Commit 0d34499b authored by Noah Eisen's avatar Noah Eisen
Browse files

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.
parent b63d8d92
No related branches found
No related tags found
No related merge requests found
......@@ -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();
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment