From c83ca394ac8b1b9f998d8272629be22699704137 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20M=C3=A9tais?= Date: Wed, 6 Aug 2014 18:23:04 +0200 Subject: [PATCH] It's strange to be wainting behind 0 test --- app/views/launchTest.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/launchTest.html b/app/views/launchTest.html index 622738c..611b776 100644 --- a/app/views/launchTest.html +++ b/app/views/launchTest.html @@ -28,7 +28,7 @@ }); socket.on('position', function(position) { - statusElement.innerHTML = 'Waiting behind ' + position + ' other tests'; + statusElement.innerHTML = 'Waiting behind ' + (position + 1) + ' other tests'; setTimeout(askStatus, 2000); });