Skip to content

Commit

Permalink
fix(geo-features): remove check for non-existing feature
Browse files Browse the repository at this point in the history
  • Loading branch information
kgajowy committed Oct 14, 2021
1 parent 26eba39 commit 5536150
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/apps/api/test/geo-features.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ describe('GeoFeaturesModule (e2e)', () => {
.set('Authorization', `Bearer ${jwtToken}`)
.expect(HttpStatus.OK);

expect(response.body.data).toHaveLength(6);
expect(response.body.data).toHaveLength(4);
});
test('should return all available features if query param has no value', async () => {
const response = await request(app.getHttpServer())
Expand Down

0 comments on commit 5536150

Please sign in to comment.