From 456493d305f57808f2dddd10cb4f379ba4634de9 Mon Sep 17 00:00:00 2001 From: Madmadness65 <59298170+Madmadness65@users.noreply.github.com> Date: Fri, 7 Mar 2025 11:51:43 -0600 Subject: [PATCH] Fix length on test It even says to do so whenever weight multipliers are adjusted... --- test/data/splash_messages.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/data/splash_messages.test.ts b/test/data/splash_messages.test.ts index 5a2b7e5c653..1dd8749432a 100644 --- a/test/data/splash_messages.test.ts +++ b/test/data/splash_messages.test.ts @@ -7,10 +7,10 @@ describe("Data - Splash Messages", () => { expect(getSplashMessages().length).toBeGreaterThanOrEqual(15); }); - // make sure to adjust this test if the weight it changed! - it("should add contain 10 `battlesWon` splash messages", () => { + // Make sure to adjust this test if the weight is changed! + it("should add contain 15 `battlesWon` splash messages", () => { const battlesWonMessages = getSplashMessages().filter((message) => message === "splashMessages:battlesWon"); - expect(battlesWonMessages).toHaveLength(10); + expect(battlesWonMessages).toHaveLength(15); }); describe("Seasonal", () => {