2
0
Эх сурвалжийг харах

* fixed test to work with FPC

florian 22 жил өмнө
parent
commit
2afce8bbaa

+ 3 - 3
tests/webtbs/tw1901.pp

@@ -14,15 +14,15 @@ begin
   error:=false;
   str(Inf,s);
   writeln('Inf: "',s,'"');
-  if s<>'                   +Inf' then
+  if s<>'                     +Inf' then
    error:=true;
   str(NaN,s);
   writeln('Nan: "',s,'"');
-  if s<>'                    Nan' then
+  if s<>'                      Nan' then
    error:=true;
   str(MinusInf,s);
   writeln('MinusInf: "',s,'"');
-  if s<>'                   -Inf' then
+  if s<>'                     -Inf' then
    error:=true;
   if error then
    begin