1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-24 12:49:19 +00:00

Fix can not typo (#15830)

This commit is contained in:
Jesse Moody
2023-03-16 11:18:31 -04:00
committed by GitHub
parent aeb7f8ff36
commit 24f1677809
5 changed files with 11 additions and 11 deletions

View File

@@ -22,7 +22,7 @@ describe("formatNumber", () => {
first_weekday: FirstWeekday.language,
};
// Node only ships with English support for `Intl`, so we can not test for other number formats here.
// Node only ships with English support for `Intl`, so we cannot test for other number formats here.
it("Formats English numbers", () => {
assert.strictEqual(formatNumber(1234.5, defaultLocale), "1,234.5");
});