From d523307144d4600a60c9a68392a01f839e5d7735 Mon Sep 17 00:00:00 2001
From: "mathias.chouet" <mathias.chouet@irstea.fr>
Date: Wed, 11 Mar 2020 11:00:46 +0100
Subject: [PATCH] Removd debug message

---
 e2e/calculator.po.ts | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/e2e/calculator.po.ts b/e2e/calculator.po.ts
index 3dda3f42d..1edff79f8 100644
--- a/e2e/calculator.po.ts
+++ b/e2e/calculator.po.ts
@@ -175,19 +175,16 @@ export class CalculatorPage {
       // check fixed results
       const frt = this.getFixedResultsTable();
       if (await frt.isPresent() && await frt.isDisplayed()) {
-        console.log("==============> Fixed found !");
         ok = ok && await this.allRowsHaveValidResults(frt);
       }
       // check variated results
       const vrt = this.getVariatedResultsTable();
       if (await vrt.isPresent() && await vrt.isDisplayed()) {
-        console.log("==============> Var found !");
         ok = ok && await this.allRowsHaveValidResults(vrt);
       }
       // check PAB results
       const prt = this.getPabResultsTable();
       if (await prt.isPresent() && await prt.isDisplayed()) {
-        console.log("==============> Pab found !");
         ok = ok && await this.allRowsHaveValidResults(prt, true);
       }
     }
-- 
GitLab