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

Fix common tests (#14485)

This commit is contained in:
Paul Bottein
2022-11-30 19:50:53 +01:00
committed by GitHub
parent 90a7c2d2ff
commit 40d0455936
3 changed files with 9 additions and 6 deletions

View File

@@ -72,7 +72,7 @@ describe("formatTimeWeekday", () => {
time_format: TimeFormat.am_pm,
first_weekday: FirstWeekday.language,
}),
"Wednesday 11:12 PM"
"Saturday 11:12 PM"
);
assert.strictEqual(
formatTimeWeekday(dateObj, {
@@ -81,7 +81,7 @@ describe("formatTimeWeekday", () => {
time_format: TimeFormat.twenty_four,
first_weekday: FirstWeekday.language,
}),
"Wednesday 23:12"
"Saturday 23:12"
);
});
});