File tree Expand file tree Collapse file tree
x-pack/test/alerting_api_integration
security_and_spaces/tests/alerting
spaces_only/tests/alerting Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -119,7 +119,6 @@ export default function createEnableAlertTests({ getService }: FtrProviderContex
119119 . auth ( user . username , user . password )
120120 . expect ( 200 ) ;
121121 expect ( typeof updatedAlert . scheduled_task_id ) . to . eql ( 'string' ) ;
122- expect ( updatedAlert . execution_status . status ) . to . eql ( 'pending' ) ;
123122 const { _source : taskRecord } = await getScheduledTask (
124123 updatedAlert . scheduled_task_id
125124 ) ;
Original file line number Diff line number Diff line change @@ -49,7 +49,6 @@ export default function createEnableAlertTests({ getService }: FtrProviderContex
4949 . set ( 'kbn-xsrf' , 'foo' )
5050 . expect ( 200 ) ;
5151 expect ( typeof updatedAlert . scheduled_task_id ) . to . eql ( 'string' ) ;
52- expect ( updatedAlert . execution_status . status ) . to . eql ( 'pending' ) ;
5352 const { _source : taskRecord } = await getScheduledTask ( updatedAlert . scheduled_task_id ) ;
5453 expect ( taskRecord . type ) . to . eql ( 'task' ) ;
5554 expect ( taskRecord . task . taskType ) . to . eql ( 'alerting:test.noop' ) ;
You can’t perform that action at this time.
0 commit comments