From fd99d6d8b63c28994c283b194655d7d831d19e2b Mon Sep 17 00:00:00 2001 From: labkey-jeckels Date: Sun, 8 Jun 2025 18:44:52 -0700 Subject: [PATCH] Update expected texts --- src/org/labkey/test/tests/BasicTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/org/labkey/test/tests/BasicTest.java b/src/org/labkey/test/tests/BasicTest.java index e90f67adee..0c9f1a1dcb 100644 --- a/src/org/labkey/test/tests/BasicTest.java +++ b/src/org/labkey/test/tests/BasicTest.java @@ -70,10 +70,10 @@ public void testStartupLogging() // Issue 52684: Ensure Log4J is capturing startup logging from: assertTextPresent( - "Starting LabKeyServer using", // Our "embedded" code (the primary entry point) + "Starting LabKeyServer ", // Our "embedded" code (the primary entry point) "Starting Servlet engine", // Spring Boot and Tomcat "Exploding module archives", // Our "bootstrap" code (extracts modules and sets up webapp classloading) - "LabKey-managed modules to ensure they're recent enough to upgrade" // Our code inside the webapp + "Deploying to context path" // Our code inside the webapp ); }