Browse Source

Merge pull request #2339 from brendandahl/fix-first-page

Fix the initialization of the first page for multiple testing rounds.
Yury Delendik 13 years ago
parent
commit
0c3d03b494
  1. 2
      test/driver.js

2
test/driver.js

@ -206,7 +206,7 @@ function nextPage(task, loadError) { @@ -206,7 +206,7 @@ function nextPage(task, loadError) {
if (isLastPage(task)) {
if (++task.round < task.rounds) {
log(' Round ' + (1 + task.round) + '\n');
task.pageNum = 1;
task.pageNum = task.firstPage || 1;
} else {
++currentTaskIdx;
nextTask();

Loading…
Cancel
Save