From ef116f00852ee4446563dc8a803b665b6e45723c Mon Sep 17 00:00:00 2001 From: Noah Eisen Date: Tue, 25 Oct 2016 12:01:58 -0700 Subject: [PATCH] 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. --- interop/interop_client.js | 1 - 1 file changed, 1 deletion(-) diff --git a/interop/interop_client.js b/interop/interop_client.js index a59a66b2..46ddecfb 100644 --- a/interop/interop_client.js +++ b/interop/interop_client.js @@ -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(); }); }