Skip to content

Commit c2f61c9

Browse files
author
Andrei Neagu
committed
fixed typo
1 parent 62091dd commit c2f61c9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/service-integration/src/service_integration/cli/_escaping.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ def legacy_escape(
4444
read_text = file.read_text()
4545
replaced_text = escape_dollar_brace(read_text)
4646
if read_text != replaced_text:
47-
print(f"Escaped sequnce in {file}")
47+
print(f"Escaped sequence in {file}")
4848
file.write_text(replaced_text)

packages/service-integration/tests/test_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ def test_cli_legacy_escape(copy_tests_data_dir: Path, run_program_with_args: Cal
4949
"legacy-escape", "--osparc-config-dirname", copy_tests_data_dir
5050
)
5151
assert result.exit_code == os.EX_OK, _format_cli_error(result)
52-
# NOTE only 1 file will have a sequnce that will be escaped
52+
# NOTE only 1 file will have a sequence that will be escaped
5353
assert (
54-
f"Escaped sequnce in {copy_tests_data_dir}/docker-compose-meta.yml"
54+
f"Escaped sequence in {copy_tests_data_dir}/docker-compose-meta.yml"
5555
in result.output.strip()
5656
)

0 commit comments

Comments
 (0)