diff --git a/ui/frontend/tests/e2e/sciences.spec.ts b/ui/frontend/tests/e2e/sciences.spec.ts index 6e004ae..ffdec61 100644 --- a/ui/frontend/tests/e2e/sciences.spec.ts +++ b/ui/frontend/tests/e2e/sciences.spec.ts @@ -319,7 +319,7 @@ test("create / list / delete science via the table + designer", async ({ await expect(page.getByTestId("sciences-table")).toBeVisible(); const row = page.getByTestId("sciences-row"); await expect(row).toHaveAttribute("data-name", "FirstStep"); - await expect(page.getByTestId("sciences-cell-drive")).toHaveText("25"); + await expect(page.getByTestId("sciences-cell-drive")).toHaveText("25.0"); // The auto-sync round-trip lands as applied. await page.getByTestId("sidebar-tab-order").click(); diff --git a/ui/frontend/tests/e2e/ship-classes.spec.ts b/ui/frontend/tests/e2e/ship-classes.spec.ts index cf42edc..5742f65 100644 --- a/ui/frontend/tests/e2e/ship-classes.spec.ts +++ b/ui/frontend/tests/e2e/ship-classes.spec.ts @@ -293,7 +293,7 @@ test("create / list / delete ship class via the table + calculator", async ({ await expect(page.getByTestId("ship-classes-table")).toBeVisible(); const row = page.getByTestId("ship-classes-row"); await expect(row).toHaveAttribute("data-name", "Drone"); - await expect(page.getByTestId("ship-classes-cell-drive")).toHaveText("1"); + await expect(page.getByTestId("ship-classes-cell-drive")).toHaveText("1.000"); // The auto-sync round-trip lands as applied. await page.getByTestId("sidebar-tab-order").click();