svn: specify absolute checkout path for tests

This commit is contained in:
irengrig
2012-05-14 10:19:17 +04:00
parent 6a1a866161
commit dea935ce44
@@ -43,17 +43,17 @@ public class SvnClientRunnerImpl implements SvnClientRunner {
@Override
public void checkin(final VirtualFile file) throws IOException {
AbstractVcsTestCase.verify(runSvn(file, "ci", "-m", "test"));
AbstractVcsTestCase.verify(runSvn(file, "ci", "-m", "test", file.getPath()));
}
@Override
public void update(final VirtualFile file) throws IOException {
AbstractVcsTestCase.verify(runSvn(file, "up", "--accept", "postpone"));
AbstractVcsTestCase.verify(runSvn(file, "up", "--accept", "postpone", file.getPath()));
}
@Override
public void checkout(final String repoUrl, final VirtualFile file) throws IOException {
AbstractVcsTestCase.verify(runSvn(file, "co", repoUrl, "."));
AbstractVcsTestCase.verify(runSvn(file, "co", repoUrl, file.getPath()));
}
@Override