Skip to content

Commit

Permalink
fix(): fix broken unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed May 25, 2020
1 parent dc33bee commit 9b80d86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/explorer/swagger-explorer.spec.ts
Expand Up @@ -88,10 +88,10 @@ describe('SwaggerExplorer', () => {
expect(routes[0].root.parameters).toEqual([
{
in: 'query',
minimum: 0,
name: 'page',
required: true,
schema: {
minimum: 0,
type: 'number'
}
},
Expand All @@ -105,10 +105,10 @@ describe('SwaggerExplorer', () => {
},
{
in: 'query',
minItems: 3,
name: 'sortBy',
required: true,
schema: {
minItems: 3,
items: {
type: 'string'
},
Expand Down

0 comments on commit 9b80d86

Please sign in to comment.