Skip to content

Commit

Permalink
fix off-by-one mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-mangin committed Jun 9, 2024
1 parent 468e245 commit 6ffda6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qa/bin/functional
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ class Tests:
number = len(self._ordered)
lines = number // self._nl

for line in range(0, lines):
for line in range(0, lines+1):
tests = []
start = line*self._nl
for n in range(start, start+self._nl):
Expand Down

0 comments on commit 6ffda6d

Please sign in to comment.