diff --git a/homeassistant/components/onewire/select.py b/homeassistant/components/onewire/select.py index 7a33471dbe5..b3b3e166c36 100644 --- a/homeassistant/components/onewire/select.py +++ b/homeassistant/components/onewire/select.py @@ -40,6 +40,7 @@ ENTITY_DESCRIPTIONS: dict[str, tuple[OneWireEntityDescription, ...]] = { read_mode=READ_MODE_INT, options=["9", "10", "11", "12"], translation_key="tempres", + entity_registry_enabled_default=False, ), ), } diff --git a/tests/components/onewire/test_select.py b/tests/components/onewire/test_select.py index 6e1c3277c73..495366bd8b0 100644 --- a/tests/components/onewire/test_select.py +++ b/tests/components/onewire/test_select.py @@ -72,6 +72,7 @@ async def test_selects_delayed( @pytest.mark.parametrize("device_id", ["28.111111111111"]) +@pytest.mark.usefixtures("entity_registry_enabled_by_default") async def test_selection_option_service( hass: HomeAssistant, config_entry: MockConfigEntry,