{% if config.showIndoorTemperature and indoor.temperature %}
-
+
{{ indoor.temperature | roundValue | unit("temperature") | decimalSymbol }}
@@ -55,7 +55,7 @@
{% endif %}
{% if config.showIndoorHumidity and indoor.humidity %}
-
+
{{ indoor.humidity | roundValue | unit("humidity") | decimalSymbol }}
diff --git a/tests/e2e/modules/calendar_spec.js b/tests/e2e/modules/calendar_spec.js
index 929b9f57..8fb803d7 100644
--- a/tests/e2e/modules/calendar_spec.js
+++ b/tests/e2e/modules/calendar_spec.js
@@ -33,7 +33,7 @@ describe("Calendar module", function () {
});
it("should show the default calendar symbol in each event", () => {
- testElementLength(".calendar .event .fa-calendar", 0, "not");
+ testElementLength(".calendar .event .fa-calendar-alt", 0, "not");
});
});
diff --git a/tests/e2e/modules/weather_spec.js b/tests/e2e/modules/weather_spec.js
index 6c5afbb0..56581d25 100644
--- a/tests/e2e/modules/weather_spec.js
+++ b/tests/e2e/modules/weather_spec.js
@@ -117,7 +117,7 @@ describe("Weather module", function () {
});
it("should render showWindDirectionAsArrow = true", function () {
- const elem = getElement(".weather .normal.medium sup i.fa-long-arrow-up");
+ const elem = getElement(".weather .normal.medium sup i.fa-long-arrow-alt-up");
expect(elem.outerHTML).toContain("transform:rotate(250deg);");
});