Merge remote-tracking branch 'origin/GP-0-dragonmacher-test-fixes-10-31-23'

This commit is contained in:
Ryan Kurtz
2023-11-01 06:03:33 -04:00
@@ -74,7 +74,8 @@ public class SplashScreenTest extends AbstractDockingTest {
String newStatusText = "New Status Text";
SplashScreen.updateSplashScreenStatus(newStatusText);
String updatedText = statusLabel.getText().trim();
waitForSwing();
String updatedText = runSwing(() -> statusLabel.getText().trim());
assertEquals("The text of the label does not match the updated " + "text that was passed.",
newStatusText, updatedText);