test(integration): fix invalid expected response (gRPC)

This commit is contained in:
Kamil Myśliwiec
2019-02-05 13:35:28 +01:00
parent 93b3e0b313
commit 843d16dfb8

View File

@@ -32,7 +32,7 @@ describe('GRPC transport', () => {
return request(server)
.post('/')
.send([1, 2, 3, 4, 5])
.expect(200, { result: '15' });
.expect(200, { result: 15 });
});
afterEach(async () => {