fpsvnsync: fixed adding new directories (or files) with properties

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@154 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
vsnijders
2007-04-27 20:31:57 +00:00
parent 44f1a2f5da
commit 3b1dfd7245
4 changed files with 56 additions and 18 deletions

View File

@ -29,7 +29,7 @@ begin
XmlOutput:= TMemoryStream.Create;
SvnExitCode := ExecuteSvnCommand('log --xml -rHEAD', XmlOutput);
AssertEquals('Unexpected exit code', 0, SvnExitCode);
AssertTrue('No XmlOuput', XmlOutput.Size>0)
AssertTrue('No XmlOutput', XmlOutput.Size>0)
finally
XmlOutput.Free;
end;