diff options
author | murgatroid99 <mlumish@google.com> | 2015-07-20 18:09:49 -0700 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2015-07-20 18:09:49 -0700 |
commit | 63bb2f1de261c63df704c3a78b222b603faa0d74 (patch) | |
tree | 108b6e7d0611eecfd909d81f5b2f3a6e4c5f1624 | |
parent | c7b8872f5481a4d068e8e0729413b1779c13292f (diff) |
Removed now-incorrect asserts in oauth test
-rw-r--r-- | src/node/interop/interop_client.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/node/interop/interop_client.js b/src/node/interop/interop_client.js index 34d6282fbf..e810e68e45 100644 --- a/src/node/interop/interop_client.js +++ b/src/node/interop/interop_client.js @@ -342,8 +342,6 @@ function oauth2Test(expected_user, scope, per_rpc, client, done) { assert.ifError(error); var call = client.unaryCall(arg, function(err, resp) { assert.ifError(err); - assert.strictEqual(resp.payload.type, 'COMPRESSABLE'); - assert.strictEqual(resp.payload.body.length, 314159); assert.strictEqual(resp.username, expected_user); assert.strictEqual(resp.oauth_scope, AUTH_SCOPE_RESPONSE); }); |