diff --git a/src/ux-components/list-button-horizontal/list-button-horizontal.spec.js b/src/ux-components/list-button-horizontal/list-button-horizontal.spec.js index c12eedefa..c058099ee 100644 --- a/src/ux-components/list-button-horizontal/list-button-horizontal.spec.js +++ b/src/ux-components/list-button-horizontal/list-button-horizontal.spec.js @@ -1,10 +1,10 @@ import { shallowMount } from "@vue/test-utils"; -import radioHorizontal from "./radio-horizontal"; +import listButtonHorizontal from "./list-button-horizontal"; describe("radio.vue", () => { it("Should render the 'radioID' prop value as the label and id value as well as the radio button value, groupName as the name value, and fire a click even that sets the display data attribute to true.", async () => { // Act - const wrapper = shallowMount(radioHorizontal, { + const wrapper = shallowMount(listButtonHorizontal, { propsData: { radioID: "2023", groupName: "TestGroup",