Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkime committed Dec 4, 2022
1 parent 130be01 commit ab9b9d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/kbn-optimizer/limits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pageLoadAssetSize:
dataViewEditor: 12000
dataViewFieldEditor: 27000
dataViewManagement: 5000
dataViews: 46600
dataViews: 47000
dataVisualizer: 27530
devTools: 38637
discover: 99999
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ export default function ({ getService }) {
})
.expect(200));

it('accepts unmapped_fields param', () =>
it('accepts include_unmapped param', () =>
supertest
.get('/api/index_patterns/_fields_for_wildcard')
.query({
pattern: '*',
unmapped_fields: true,
include_unmapped: true,
})
.expect(200));

Expand Down

0 comments on commit ab9b9d2

Please sign in to comment.