Skip to content

Commit 5a86310

Browse files
committed
fbc-tests: fix wrong parameter in tests/file/file-seteof.bas tests 1 => i
1 parent c32fb16 commit 5a86310

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/file/file-seteof.bas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ SUITE( fbc_tests.file_.file_seteof )
2222

2323
'' FileSetEof can be used to increase file size
2424
for i as integer = 0 to 10000 step 1000
25-
chkSetEof( 1 )
25+
chkSetEof( i )
2626
next
2727

2828
'' or decrease file size
2929
for i as integer = 10000 to 0 step -1000
30-
chkSetEof( 1 )
30+
chkSetEof( i )
3131
next
3232

3333
close #1

0 commit comments

Comments
 (0)