From 9e98cfd7cb15b980d116540cfcff8e074f4cef07 Mon Sep 17 00:00:00 2001 From: Maciej Bodek Date: Fri, 15 Sep 2023 11:09:31 +0200 Subject: [PATCH] Update tests for the changed Log position --- .../browser-tests/cypress/integration/console/grid.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/browser-tests/cypress/integration/console/grid.spec.js b/packages/browser-tests/cypress/integration/console/grid.spec.js index a5068e894..cb3985dfc 100644 --- a/packages/browser-tests/cypress/integration/console/grid.spec.js +++ b/packages/browser-tests/cypress/integration/console/grid.spec.js @@ -21,13 +21,13 @@ describe("questdb grid", () => { cy.wait(100); cy.getGridRows() - .should("have.length", 5) + .should("have.length", 8) .getGridRow(0) .should("contain", "1"); cy.getGridViewport().scrollTo("bottom"); - cy.getGridRows().should("have.length", 5); - cy.getGridRow(0).should("contain", "96"); + cy.getGridRows().should("have.length", 8); + cy.getGridRow(0).should("contain", "93"); cy.matchImageSnapshot(); });