fpcunit: Use dot instead of underscore for test node seperator. Issue #27887, patch from Graeme Geldenhuys.

git-svn-id: trunk@48798 -
This commit is contained in:
juha 2015-04-21 17:29:53 +00:00
parent 0a2e216da7
commit 723f7fa2f7

View File

@ -246,7 +246,7 @@ begin
Result := '';
while Node <> nil do
begin
Result := Node.Text + '_' + Result;
Result := Node.Text + '.' + Result;
Node := Node.Parent;
end;
end;