File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ def _add_new_library_tag_format(library_config: Dict) -> None:
164164 library_config(Dict): The library configuration.
165165 """
166166 if "tag_format" not in library_config :
167- library_config ["tag_format" ] = "{{ id}} -v{{ version} }"
167+ library_config ["tag_format" ] = "{id}-v{version}"
168168
169169
170170def _get_new_library_config (request_data : Dict ) -> Dict :
Original file line number Diff line number Diff line change @@ -347,7 +347,7 @@ def test_prepare_new_library_config(mocker):
347347 in prepared_config ["preserve_regex" ]
348348 )
349349 assert prepared_config ["remove_regex" ] == ["packages/google-cloud-language" ]
350- assert prepared_config ["tag_format" ] == "{{ id}} -v{{ version} }"
350+ assert prepared_config ["tag_format" ] == "{id}-v{version}"
351351 assert prepared_config ["version" ] == "0.0.0"
352352
353353
You can’t perform that action at this time.
0 commit comments