Skip to content

Commit

Permalink
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
Browse files Browse the repository at this point in the history
…-fix'
  • Loading branch information
kibanamachine committed Dec 18, 2024
1 parent 4ebb176 commit 06012ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ export const setup = async (
clickEditDataRetentionButton,
clickDetailPanelIndexTemplateLink,
clickManageDataStreamsButton,
clickBulkEditDataRetentionButton
clickBulkEditDataRetentionButton,
},
findDeleteActionAt,
findDeleteConfirmationModal,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,9 @@ describe('Data Streams tab', () => {

expect(httpSetup.put).toHaveBeenLastCalledWith(
`${API_BASE_PATH}/data_streams/data_retention`,
expect.objectContaining({ body: JSON.stringify({ dataStreams: ['dataStream1', 'dataStream2'] }) })
expect.objectContaining({
body: JSON.stringify({ dataStreams: ['dataStream1', 'dataStream2'] }),
})
);
});
});
Expand Down

0 comments on commit 06012ca

Please sign in to comment.