Merge pull request #5478 from rschamp/rearrange-conference-2021

Fix integration test broken in #5476
This commit is contained in:
Ray Schamp 2021-05-24 14:34:01 -04:00 committed by GitHub
commit e012c8065c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -139,7 +139,7 @@ describe('www-integration footer links', () => {
await clickText('Scratch Conference');
let url = await driver.getCurrentUrl();
let pathname = (new URL(url)).pathname;
expect(pathname).toMatch(/^\/conference\/2020\/?$/);
expect(pathname).toMatch(/^\/conference\/2021\/?$/);
});
});