* Fixed test to be locale independent.

git-svn-id: trunk@10697 -
This commit is contained in:
yury 2008-04-18 14:18:14 +00:00
parent b0e41fdf4b
commit 4c769f6148

View File

@ -6,6 +6,6 @@ var
ef : Extended;
begin
ef := 12;
if (FormatFloat('#.#######E-0',ef) <> '1.2E1') then
if (FormatFloat('#.#######E-0',ef) <> '1'+DecimalSeparator+'2E1') then
halt(1);
end.