diff --git a/frontend/cypress/e2e/canDetail.cy.js b/frontend/cypress/e2e/canDetail.cy.js index 3e441af5d1..5be0b96a8f 100644 --- a/frontend/cypress/e2e/canDetail.cy.js +++ b/frontend/cypress/e2e/canDetail.cy.js @@ -173,7 +173,7 @@ describe("CAN detail page", () => { .and("contain", "60%"); }); it("handles budget form", () => { - cy.visit(`/cans/${can504.number}/funding`); + cy.visit(`/cans/504/funding`); cy.get("#fiscal-year-select").select(currentFiscalYear); cy.get("#edit").click(); cy.get("#carry-forward-card").should("contain", "$ 10,000,000.00"); @@ -198,6 +198,7 @@ describe("CAN detail page", () => { .and("contain", "$5,000,000.00"); }); it("handle funding received form", () => { + cy.log(`/cans/${can504.number}/funding`); cy.visit(`/cans/${can504.number}/funding`); cy.get("#fiscal-year-select").select(currentFiscalYear); cy.get("#edit").click();