diff --git a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/components/cloud_posture_third_party_support_callout.test.tsx b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/components/cloud_posture_third_party_support_callout.test.tsx
index 7b238ef49fa2e..b0e5cda02bfdb 100644
--- a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/components/cloud_posture_third_party_support_callout.test.tsx
+++ b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/components/cloud_posture_third_party_support_callout.test.tsx
@@ -28,14 +28,14 @@ describe('CloudPostureThirdPartySupportCallout', () => {
render();
- expect(screen.getByText(/New! Starting from version 1.9/)).toBeInTheDocument();
+ expect(screen.getByText(/New! Starting from version 2.0/)).toBeInTheDocument();
});
it('does not render callout when package is not wiz', () => {
const nonWizPackageInfo = { name: 'other' } as PackageInfo;
render();
- expect(screen.queryByText(/New! Starting from version 1.9/)).not.toBeInTheDocument();
+ expect(screen.queryByText(/New! Starting from version 2.0/)).not.toBeInTheDocument();
});
it('does not render callout when it has been dismissed', () => {
@@ -43,6 +43,6 @@ describe('CloudPostureThirdPartySupportCallout', () => {
render();
- expect(screen.queryByText(/New! Starting from version 1.9/)).not.toBeInTheDocument();
+ expect(screen.queryByText(/New! Starting from version 2.0/)).not.toBeInTheDocument();
});
});
diff --git a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/components/cloud_posture_third_party_support_callout.tsx b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/components/cloud_posture_third_party_support_callout.tsx
index 6bd4197dc267e..cd0a11b726fdf 100644
--- a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/components/cloud_posture_third_party_support_callout.tsx
+++ b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/components/cloud_posture_third_party_support_callout.tsx
@@ -33,7 +33,7 @@ export const CloudPostureThirdPartySupportCallout = ({
iconType="cheer"
title={i18n.translate('xpack.fleet.epm.wizIntegration.newFeaturesCallout', {
defaultMessage:
- 'New! Starting from version 1.9, ingest vulnerability and misconfiguration findings from Wiz into Elastic. Leverage out-of-the-box contextual investigation and threat-hunting workflows.',
+ 'New! Starting from version 2.0, ingest vulnerability and misconfiguration findings from Wiz into Elastic. Leverage out-of-the-box contextual investigation and threat-hunting workflows.',
})}
/>