From 5ecd2651c788334a27cf95a2053cd4d5809c0062 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20B=C3=B6sing?= <2189546+boesing@users.noreply.github.com> Date: Fri, 17 Jan 2025 12:20:35 +0100 Subject: [PATCH] chore: apply PHP 8.4 to unit tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maximilian Bösing <2189546+boesing@users.noreply.github.com> --- src/config/app.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/app.spec.ts b/src/config/app.spec.ts index 2d2b432..ae497df 100644 --- a/src/config/app.spec.ts +++ b/src/config/app.spec.ts @@ -24,7 +24,7 @@ describe('config/app', () => { ${'~8.1'} | ${[ '8.1' ]} ${'~8.1.0'} | ${[ '8.1' ]} ${'~8.1.12'} | ${[ '8.1' ]} - ${'^8.0 || ~8.0.0 || ~8.1.12'} | ${[ '8.0', '8.1', '8.2', '8.3' ]} + ${'^8.0 || ~8.0.0 || ~8.1.12'} | ${[ '8.0', '8.1', '8.2', '8.3', '8.4' ]} ${'<=8.1.0'} | ${[ '8.0', '8.1' ]} `('for "$constraint" === $expected', ({constraint, expected}) => { expect(gatherVersions({require: {php: constraint}})).toEqual(expected);