diff --git a/test/integration/smoke-testing/test_footer_links.js b/test/integration/smoke-testing/test_footer_links.js index 1888034c6..8b1903446 100644 --- a/test/integration/smoke-testing/test_footer_links.js +++ b/test/integration/smoke-testing/test_footer_links.js @@ -281,9 +281,9 @@ tap.test('clickScratchDayLink', options, t => { // SCRATCH CONFERENCE tap.test('clickScratchConferenceLink', options, t => { const linkText = 'Scratch Conference'; - const expectedHref = '/conference'; + const expectedHref = '/conference/20'; clickFooterLinks(linkText).then(url => { - t.equal(url.substr(-expectedHref.length), expectedHref); + t.match(url.substr(-(expectedHref.length + 2)), expectedHref); t.end(); }); });