diff --git a/airbyte-cdk/python/unit_tests/sources/declarative/interpolation/test_jinja.py b/airbyte-cdk/python/unit_tests/sources/declarative/interpolation/test_jinja.py index 1353f925964f..31cfd569d6e8 100644 --- a/airbyte-cdk/python/unit_tests/sources/declarative/interpolation/test_jinja.py +++ b/airbyte-cdk/python/unit_tests/sources/declarative/interpolation/test_jinja.py @@ -253,7 +253,7 @@ def test_undeclared_variables(template_string, expected_error, expected_value): id="test_now_utc_with_duration_and_format", ), pytest.param("{{ 1 | string }}", "1", id="test_int_to_string"), - pytest.param("{{ [\"hello\", \"world\"] | string }}", "[\"hello\", \"world\"]", id="test_int_to_string"), + pytest.param("{{ [\"hello\", \"world\"] | string }}", "[\"hello\", \"world\"]", id="test_array_to_string"), ], ) def test_macros_examples(template_string, expected_value):