diff options
author | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2024-02-29 10:14:22 +0100 |
---|---|---|
committer | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2024-02-29 16:18:36 +0100 |
commit | 04804c49eefd80efb0f31b27b56192ee4c77081b (patch) | |
tree | 7c756f99bcc99d99671a3b65e2b52d6e7b6bcf83 /src/onapsdk/so/templates/instantiate_vf_module_ala_carte.json.j2 | |
parent | d3591ef0893a8b718042b3a7937bb1f73d972176 (diff) |
Avoid empty newlines in jina templates when if conditions evaluate to false
- avoid empty newlines for false if statements
- this is useful for the logging of the rendered objects in tests
Issue-ID: TEST-417
Change-Id: Iaeec217c87e73e316c4ef468007369facbf9a02f
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'src/onapsdk/so/templates/instantiate_vf_module_ala_carte.json.j2')
-rw-r--r-- | src/onapsdk/so/templates/instantiate_vf_module_ala_carte.json.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/onapsdk/so/templates/instantiate_vf_module_ala_carte.json.j2 b/src/onapsdk/so/templates/instantiate_vf_module_ala_carte.json.j2 index 0738379..5bfe12e 100644 --- a/src/onapsdk/so/templates/instantiate_vf_module_ala_carte.json.j2 +++ b/src/onapsdk/so/templates/instantiate_vf_module_ala_carte.json.j2 @@ -22,7 +22,7 @@ { "name": "{{ parameter.name }}", "value": "{{ parameter.value }}" - }{% if not loop.last %},{% endif %} + }{%- if not loop.last %},{%- endif %} {% endfor %} ], "testApi": "GR_API", |