Skip to content

Commit

Permalink
fix implicit concatenated strings
Browse files Browse the repository at this point in the history
  • Loading branch information
skshetry committed Jan 9, 2025
1 parent e70a1e9 commit c090c66
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/func/test_merge_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ def test_merge_different_output_options(tmp_dir, dvc, caplog):
)

(tmp_dir / "their").write_text(
r"outs:\n"
r"outs:"
"\n"
"- md5: f987654321.dir\n"
" hash: md5\n"
" path: path\n"
Expand Down
3 changes: 2 additions & 1 deletion tests/unit/command/test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ def test_add_already_exists(dvc, caplog, mocker):
"missing": "Updating mydataset (s3://bucket/path)\n",
"unchanged": "Nothing to update\n",
"updated": (
r"Updating mydataset (s3://bucket/path)\n"
r"Updating mydataset (s3://bucket/path)"
"\n"
"M\tbaz\n"
"A\tfoobar\n"
"D\tfoo\n"
Expand Down

0 comments on commit c090c66

Please sign in to comment.