Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewChubatiuk committed Apr 25, 2024
1 parent df5fcd8 commit 1ed8968
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/cypress/integration/dashboard/textbox_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ describe("Textbox", () => {
})
.should($el => {
const { top, left } = $el.offset();
expect(top).to.be.oneOf([162.0078125]);
expect(top).to.be.oneOf([162.015625]);
expect(left).to.eq(282);
expect($el.width()).to.eq(545);
expect($el.height()).to.eq(185);
Expand Down
2 changes: 1 addition & 1 deletion client/cypress/integration/query/parameter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ describe("Parameter", () => {

cy.location("search").should("not.contain", "Redash");

cy.intecept("POST", "**/api/queries/*/results").as("Results");
cy.intercept("POST", "**/api/queries/*/results").as("Results");

apply(cy.get("@Input"));

Expand Down

0 comments on commit 1ed8968

Please sign in to comment.