SERVER-125977 fix copybara windows unittest cli quotes (#53412)

GitOrigin-RevId: b6795b79828bb9874096f04e798f13a56fb5be56
This commit is contained in:
Daniel Moody 2026-05-07 14:31:58 -05:00 committed by MongoDB Bot
parent 53257a1739
commit 7139513a1c

View File

@ -4123,8 +4123,10 @@ class TestMainWorkflow(unittest.TestCase):
"--no-checkout",
"--single-branch",
"-b",
"v8.2.7",
"https://example.com/destination.git",
sync_repo_with_copybara.shell_quote("v8.2.7"),
sync_repo_with_copybara.shell_quote(
"https://example.com/destination.git"
),
sync_repo_with_copybara.shell_quote(destination_repo_dir),
]
)
@ -4136,8 +4138,10 @@ class TestMainWorkflow(unittest.TestCase):
"-C",
sync_repo_with_copybara.shell_quote(destination_repo_dir),
"push",
"https://example.com/destination.git",
"publicsha123:refs/tags/r8.2.7",
sync_repo_with_copybara.shell_quote(
"https://example.com/destination.git"
),
sync_repo_with_copybara.shell_quote("publicsha123:refs/tags/r8.2.7"),
]
)
),