From 673d8b3ad8c5ee09b898bd35835f0899d6b0438e Mon Sep 17 00:00:00 2001 From: 1jamie Date: Fri, 14 Aug 2026 22:33:15 -0500 Subject: [PATCH] fix(tests): make launcher_patch_notes resilient to release note wording changes --- tests/engine/launcher_patch_notes.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/engine/launcher_patch_notes.lua b/tests/engine/launcher_patch_notes.lua index ebdffb78..89fbc9c2 100644 --- a/tests/engine/launcher_patch_notes.lua +++ b/tests/engine/launcher_patch_notes.lua @@ -62,7 +62,7 @@ end do local body, ver = PatchNotes.body(nil) - check(type(body) == "string" and body:find("Issues closed", 1, true), + check(type(body) == "string" and (body:find("Download", 1, true) or body:find("Issues", 1, true)), "without a check result PatchNotes uses the stashed iOS app-repo notes") check(type(ver) == "string" and ver:find("^%d+%.%d+%.%d+$") ~= nil, "stashed notes name a release version")