From 0bd92d1822eec4186eb8dd220b7caeeeb2368ff2 Mon Sep 17 00:00:00 2001 From: zackdotcat Date: Mon, 12 Aug 2024 11:07:47 -0400 Subject: [PATCH] Fix accidentally renamed one-off custom class for license backgrounds --- frontend/src/components/VLicense/VLicense.vue | 4 ++-- frontend/test/unit/specs/components/v-license.spec.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/VLicense/VLicense.vue b/frontend/src/components/VLicense/VLicense.vue index 87ccc6e26d1..62811aa7009 100644 --- a/frontend/src/components/VLicense/VLicense.vue +++ b/frontend/src/components/VLicense/VLicense.vue @@ -4,7 +4,7 @@ diff --git a/frontend/test/unit/specs/components/v-license.spec.js b/frontend/test/unit/specs/components/v-license.spec.js index eac299120ba..3457c7aa60d 100644 --- a/frontend/test/unit/specs/components/v-license.spec.js +++ b/frontend/test/unit/specs/components/v-license.spec.js @@ -37,7 +37,7 @@ describe("VLicense", () => { const licenseIcons = container.querySelectorAll("v-icon-stub") expect(licenseIcons).toHaveLength(2) licenseIcons.forEach((icon) => { - expect(icon).toHaveClass("bged", "text-black") + expect(icon).toHaveClass("license-bg", "text-black") }) }) })