# HG changeset patch # User victory.bedrosova # Date 1611134491 -3600 # Node ID 4c254870062702925fedc57c4cc5e87dff548c4c # Parent 71d765469b2d38f9c521531e4fb2b39f7a46dab0 fixed test diff -r 71d765469b2d -r 4c2548700627 mercurial-tests/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/command/BaseCommandTest.java --- a/mercurial-tests/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/command/BaseCommandTest.java Tue Jan 19 22:53:01 2021 +0100 +++ b/mercurial-tests/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/command/BaseCommandTest.java Wed Jan 20 10:21:31 2021 +0100 @@ -39,8 +39,8 @@ assertTrue(cl.getCommandLineString().endsWith(" \"param with spaces\" \"param with quote \\\" rm -rf /\"")); assertTrue(cl.toGeneralCommandLine().getCommandLineString().endsWith(" \"param with spaces\" \"param with quote \\\" rm -rf /\"")); } else { - assertTrue(cl.getCommandLineString().endsWith(" param with spaces param with quote \" rm -rf /")); - assertTrue(cl.toGeneralCommandLine().getCommandLineString().endsWith(" param with spaces param with quote \" rm -rf /")); + assertTrue(cl.getCommandLineString().endsWith(" \"param with spaces\" \"param with quote \" rm -rf /\"")); + assertTrue(cl.toGeneralCommandLine().getCommandLineString().endsWith(" \"param with spaces\" \"param with quote \" rm -rf /\"")); } }