Skip to content

Commit 54acfda

Browse files
authored
fix implicit concatenated strings (#10666)
1 parent e70a1e9 commit 54acfda

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

tests/func/test_merge_driver.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ def test_merge_different_output_options(tmp_dir, dvc, caplog):
132132
)
133133

134134
(tmp_dir / "their").write_text(
135-
r"outs:\n"
135+
r"outs:"
136+
"\n"
136137
"- md5: f987654321.dir\n"
137138
" hash: md5\n"
138139
" path: path\n"

tests/unit/command/test_dataset.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ def test_add_already_exists(dvc, caplog, mocker):
106106
"missing": "Updating mydataset (s3://bucket/path)\n",
107107
"unchanged": "Nothing to update\n",
108108
"updated": (
109-
r"Updating mydataset (s3://bucket/path)\n"
109+
r"Updating mydataset (s3://bucket/path)"
110+
"\n"
110111
"M\tbaz\n"
111112
"A\tfoobar\n"
112113
"D\tfoo\n"

0 commit comments

Comments
 (0)