From a3af523ca99da87e0ccff75df0bef07f8216a482 Mon Sep 17 00:00:00 2001 From: Christopher Willis-Ford <7019101+cwillisf@users.noreply.github.com> Date: Thu, 17 Oct 2024 07:00:31 -0700 Subject: [PATCH] fix: use Title Caps for DSA Requirements link label --- src/l10n.json | 2 +- test/integration/footer-links.test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/l10n.json b/src/l10n.json index fe8e884f8..d30b11b1b 100644 --- a/src/l10n.json +++ b/src/l10n.json @@ -27,7 +27,7 @@ "general.credits": "Our Team", "general.donors": "Donors", "general.dmca": "DMCA", - "general.dsa": "DSA requirements", + "general.dsa": "DSA Requirements", "general.emailAddress": "Email address", "general.english": "English", "general.error": "Oops! Something went wrong", diff --git a/test/integration/footer-links.test.js b/test/integration/footer-links.test.js index 1efe5a3b7..d1a8b2b40 100644 --- a/test/integration/footer-links.test.js +++ b/test/integration/footer-links.test.js @@ -162,7 +162,7 @@ describe('www-integration footer links', () => { }); test('click DSA requirements link', async () => { - await clickText('DSA requirements'); + await clickText('DSA Requirements'); await waitUntilDocumentReady(); const url = await driver.getCurrentUrl(); expect(url).toBe('https://www.scratchfoundation.org/dsa/');