Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisronline committed Sep 10, 2021
1 parent a6d9461 commit ca6b2be
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions x-pack/plugins/task_manager/server/config.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ describe('config validation', () => {
"request_capacity": 10,
},
"index": ".kibana_task_manager",
"unsafe": Object {
"exclude_task_types": Array [],
},
"max_attempts": 3,
"max_poll_inactivity_cycles": 10,
"max_workers": 10,
Expand All @@ -40,6 +37,9 @@ describe('config validation', () => {
},
"poll_interval": 3000,
"request_capacity": 1000,
"unsafe": Object {
"exclude_task_types": Array [],
},
"version_conflict_threshold": 80,
}
`);
Expand Down Expand Up @@ -77,9 +77,6 @@ describe('config validation', () => {
"request_capacity": 10,
},
"index": ".kibana_task_manager",
"unsafe": Object {
"exclude_task_types": Array [],
},
"max_attempts": 3,
"max_poll_inactivity_cycles": 10,
"max_workers": 10,
Expand All @@ -99,6 +96,9 @@ describe('config validation', () => {
},
"poll_interval": 3000,
"request_capacity": 1000,
"unsafe": Object {
"exclude_task_types": Array [],
},
"version_conflict_threshold": 80,
}
`);
Expand All @@ -123,9 +123,6 @@ describe('config validation', () => {
"request_capacity": 10,
},
"index": ".kibana_task_manager",
"unsafe": Object {
"exclude_task_types": Array [],
},
"max_attempts": 3,
"max_poll_inactivity_cycles": 10,
"max_workers": 10,
Expand All @@ -150,6 +147,9 @@ describe('config validation', () => {
},
"poll_interval": 3000,
"request_capacity": 1000,
"unsafe": Object {
"exclude_task_types": Array [],
},
"version_conflict_threshold": 80,
}
`);
Expand Down

0 comments on commit ca6b2be

Please sign in to comment.