Skip to content

Commit 41f3fc0

Browse files
committed
Remove test that became invalid
1 parent b84940e commit 41f3fc0

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

packages/grpc-js/test/test-channel-credentials.ts

-14
Original file line numberDiff line numberDiff line change
@@ -90,20 +90,6 @@ describe('ChannelCredentials Implementation', () => {
9090
const composedChannelCreds = channelCreds.compose(callCreds);
9191
assert.ok(composedChannelCreds instanceof ChannelCredentials);
9292
});
93-
94-
it('should be chainable', () => {
95-
const callCreds1 = new CallCredentialsMock();
96-
const callCreds2 = new CallCredentialsMock();
97-
// Associate both call credentials with channelCreds
98-
const composedChannelCreds = ChannelCredentials.createSsl()
99-
.compose(callCreds1)
100-
.compose(callCreds2);
101-
// Build a mock object that should be an identical copy
102-
const composedCallCreds = callCreds1.compose(callCreds2);
103-
const composedChannelCreds2 = ChannelCredentials.createSsl()
104-
.compose(composedCallCreds);
105-
assert.ok(composedChannelCreds._equals(composedChannelCreds2));
106-
});
10793
});
10894
});
10995

0 commit comments

Comments
 (0)