mirror of https://github.com/grpc/grpc-node.git
grpc-js: fix lint
This commit makes the linter pass again.
This commit is contained in:
parent
0b4fd1365a
commit
4399131bf9
|
@ -138,9 +138,7 @@ class UnknownHandler extends CompressionHandler {
|
|||
compressMessage(message: Buffer): Promise<Buffer> {
|
||||
return Promise.reject<Buffer>(
|
||||
new Error(
|
||||
`Received message compressed wth unsupported compression method ${
|
||||
this.compressionName
|
||||
}`
|
||||
`Received message compressed wth unsupported compression method ${this.compressionName}`
|
||||
)
|
||||
);
|
||||
}
|
||||
|
|
|
@ -269,9 +269,7 @@ describe('CallStream', () => {
|
|||
frameLengths: range(0, 20).map(() => 1),
|
||||
},
|
||||
].forEach((testCase: { description: string; frameLengths: number[] }) => {
|
||||
it(`should handle a short message where ${
|
||||
testCase.description
|
||||
}`, done => {
|
||||
it(`should handle a short message where ${testCase.description}`, done => {
|
||||
const callStream = new Http2CallStream(
|
||||
'foo',
|
||||
{} as Http2Channel,
|
||||
|
|
Loading…
Reference in New Issue