Skip to content

Commit

Permalink
fix elastic URL issue
Browse files Browse the repository at this point in the history
  • Loading branch information
achyutjhunjhunwala committed Oct 25, 2024
1 parent 5a26974 commit 3a896dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -700,9 +700,7 @@ export default function ({ getService, getPageObjects }: DatasetQualityFtrProvid

const linkURL = await linkButton.getAttribute('href');

expect(linkURL).to.be(
'https://www.elastic.co/guide/en/elasticsearch/reference/master/mapping-settings-limit.html'
);
expect(linkURL?.endsWith('mapping-settings-limit.html')).to.be(true);
});

it('should display increase field limit as a possible mitigation for non integration', async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -701,9 +701,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {

const linkURL = await linkButton.getAttribute('href');

expect(linkURL).to.be(
'https://www.elastic.co/guide/en/elasticsearch/reference/master/mapping-settings-limit.html'
);
expect(linkURL?.endsWith('mapping-settings-limit.html')).to.be(true);
});

it('should display increase field limit as a possible mitigation for non integration', async () => {
Expand Down

0 comments on commit 3a896dc

Please sign in to comment.