[2.x] Fix Resolvers test formatting (#8968)

This commit is contained in:
Anatolii Kmetiuk 2026-03-24 10:47:42 +09:00 committed by GitHub
parent a9347cf220
commit 81d379f12d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -79,7 +79,8 @@ object ResolversVcsSecurityTest extends Properties:
finally IO.delete(staging)
private def testProcessBuilderKeepsMetacharactersInSingleArgument: Result =
val argv = new ProcessBuilder("git", "fetch", "origin", "topic&injection").command().asScala.toList
val argv =
new ProcessBuilder("git", "fetch", "origin", "topic&injection").command().asScala.toList
Result.assert(argv == List("git", "fetch", "origin", "topic&injection"))
end ResolversVcsSecurityTest