diff --git a/tests/helpers/test_config_validation.py b/tests/helpers/test_config_validation.py index b73dc6d6f94..7f94ab53b23 100644 --- a/tests/helpers/test_config_validation.py +++ b/tests/helpers/test_config_validation.py @@ -253,7 +253,7 @@ def test_template(): schema = vol.Schema(cv.template) for value in ( - None, '{{ partial_print }', '{% if True %}Hello' + None, '{{ partial_print }', '{% if True %}Hello', {'dict': 'isbad'} ): with pytest.raises(vol.MultipleInvalid): schema(value)