From 85d847c480d9ab04e46bbe35b898e8803f6ebe43 Mon Sep 17 00:00:00 2001 From: Mark Harris Date: Tue, 14 Dec 2021 17:28:02 -0500 Subject: [PATCH] merge issues --- src/layouts/vehicle-year/year-question/year-question.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layouts/vehicle-year/year-question/year-question.spec.js b/src/layouts/vehicle-year/year-question/year-question.spec.js index 05df6ed54..3c00dcd9d 100644 --- a/src/layouts/vehicle-year/year-question/year-question.spec.js +++ b/src/layouts/vehicle-year/year-question/year-question.spec.js @@ -46,8 +46,8 @@ describe("year-question.vue", () => { yearQuestion.methods.initializeComponent.call(wrapper.vm, cmsContent, initialData); //Assert - const radioQuestionComponent = await wrapper.findComponent({ name: "radioQuestion" }); - expect(radioQuestionComponent.attributes("answers")).toBe("2023,2022,2021"); + const buttonQuestionComponent = await wrapper.findComponent({ name: "buttonQuestion" }); + expect(buttonQuestionComponent.attributes("answers")).toBe("2023,2022,2021"); }); });