Browse Source

* fixed test to work with FPC

florian 22 years ago
parent
commit
2afce8bbaa
1 changed files with 3 additions and 3 deletions
  1. 3 3
      tests/webtbs/tw1901.pp

+ 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