Skip to content

Commit

Permalink
[ML] Fix license text, test subj
Browse files Browse the repository at this point in the history
  • Loading branch information
qn895 committed Aug 19, 2021
1 parent 8300462 commit 1497d3d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function FailedTransactionsCorrelationsTab({ onFilter }: TabContentProps) {
text={i18n.translate(
'xpack.apm.failedTransactionsCorrelations.licenseCheckText',
{
defaultMessage: `To use the failed transactions correlations feature, you must be subscribed to an Elastic Platinum license.`,
defaultMessage: `To use the failed transaction correlations feature, you must be subscribed to an Elastic Platinum license. With it, you'll be able to discover which attributes are contributing to failed transactions.`,
}
)}
/>
Expand Down
2 changes: 1 addition & 1 deletion x-pack/test/functional/apps/apm/correlations/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { FtrProviderContext } from '../../../ftr_provider_context';

export default function ({ loadTestFile }: FtrProviderContext) {
describe('correlations', function () {
this.tags('skipFirefox');
this.tags(['skipFirefox', 'apm']);
loadTestFile(require.resolve('./latency_correlations'));
loadTestFile(require.resolve('./failed_transaction_correlations'));
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,10 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('loads the correlation results', async function () {
await retry.try(async () => {
// Assert that the data fully loaded to 100%
const apmCorrelationsLatencyCorrelationsProgressTitle = await testSubjects.getVisibleText(
'apmCorrelationsLatencyCorrelationsProgressTitle'
const apmLatencyCorrelationsProgressTitle = await testSubjects.getVisibleText(
'apmCorrelationsProgressTitle'
);
expect(apmCorrelationsLatencyCorrelationsProgressTitle).to.be('Progress: 100%');
expect(apmLatencyCorrelationsProgressTitle).to.be('Progress: 100%');

// Assert that the Correlations Chart and its header are present
const apmCorrelationsLatencyCorrelationsChartTitle = await testSubjects.getVisibleText(
Expand Down

0 comments on commit 1497d3d

Please sign in to comment.