diff --git a/packages/calcite-components/src/components/segmented-control/segmented-control.e2e.ts b/packages/calcite-components/src/components/segmented-control/segmented-control.e2e.ts
index d7f6a36215c..b3a3bd56b70 100644
--- a/packages/calcite-components/src/components/segmented-control/segmented-control.e2e.ts
+++ b/packages/calcite-components/src/components/segmented-control/segmented-control.e2e.ts
@@ -403,8 +403,6 @@ describe("calcite-segmented-control", () => {
});
describe("is form-associated", () => {
- const formAssociatedOptions = { testValue: "2" };
-
describe("unselected value", () => {
formAssociated(
html`
@@ -414,7 +412,7 @@ describe("calcite-segmented-control", () => {
three
`,
- formAssociatedOptions,
+ { testValue: 2, validation: true, changeValueKeys: ["Space"] },
);
});
@@ -427,7 +425,7 @@ describe("calcite-segmented-control", () => {
three
`,
- formAssociatedOptions,
+ { testValue: 2 },
);
});
});