Browse Source

* fix test for case sensitive file system, resolves #31452

git-svn-id: trunk@35543 -
florian 8 years ago
parent
commit
5dd6232c0e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/test/tisobuf2.pp

+ 1 - 1
tests/test/tisobuf2.pp

@@ -10,7 +10,7 @@ program test(input, output, testfile);
     writeln(testfile,'Hello world');
     writeln(testfile,'Hello world');
     close(testfile);
     close(testfile);
 
 
-    assign(testfile,'testfile.txt');
+    assign(testfile,'TESTFILE.txt');
     reset(testfile);
     reset(testfile);
     readln(testfile,s);
     readln(testfile,s);
     if (s[1]<>'H') or (s[2]<>'e') then
     if (s[1]<>'H') or (s[2]<>'e') then