Skip to content

Commit 5383f54

Browse files
committed
fix: fill out missing brackets in testlab readme
1 parent 2783acf commit 5383f54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/testlab/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ describe('parseParams', () => {
9090

9191
const args = parseParams(request, [
9292
{name: 'count', in: 'query', type: 'number'}
93-
];
93+
]);
9494

9595
expect(args).to.eql([10]);
9696
})
@@ -179,7 +179,7 @@ import {stubExpressContext, expect} from '@loopback/testlab';
179179

180180
describe('response writer', () => {
181181
it('writes object result to response as JSON', async () => {
182-
const context = stubExpressContext();
182+
const context = stubExpressContext();
183183

184184
writeResultToResponse(context.response, {name: 'Joe'});
185185
const result = await context.result;

0 commit comments

Comments
 (0)