From a3f640b261b3d129b75bf25a2ce2dfd27b4c47a1 Mon Sep 17 00:00:00 2001 From: Bruno Borges Date: Tue, 14 Jul 2026 13:10:25 -0400 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- __tests__/toolchains.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/toolchains.test.ts b/__tests__/toolchains.test.ts index 01676ecd..01b2ca59 100644 --- a/__tests__/toolchains.test.ts +++ b/__tests__/toolchains.test.ts @@ -842,7 +842,7 @@ describe('toolchains tests', () => { // The pre-existing (Sun 1.6) toolchain must be preserved ... expect(updated).toContain('sun_1.6'); expect(updated).toContain('/opt/jdk/sun/1.6'); - // ... and the newly installed JDK must be appended. + // ... and the newly installed JDK must be included in the merged result. expect(updated).toContain('temurin_17'); expect(updated).toContain('Eclipse Temurin'); expect(updated).toContain(`${jdkInfo.jdkHome}`);