mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-12 00:51:51 +01:00
24 lines
811 B
Diff
24 lines
811 B
Diff
Patch-Source: https://github.com/php/php-src/pull/16705
|
|
From 2b445194a0732e548acab4fdf63c05cdf7f18f98 Mon Sep 17 00:00:00 2001
|
|
From: Niels Dossche <7771979+nielsdos@users.noreply.github.com>
|
|
Date: Tue, 5 Nov 2024 20:38:46 +0100
|
|
Subject: [PATCH] Fix test with shared zend_test
|
|
|
|
---
|
|
sapi/fpm/tests/gh16628.phpt | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/sapi/fpm/tests/gh16628.phpt b/sapi/fpm/tests/gh16628.phpt
|
|
index e2df0c8cb84d..b160bb180ffb 100644
|
|
--- a/sapi/fpm/tests/gh16628.phpt
|
|
+++ b/sapi/fpm/tests/gh16628.phpt
|
|
@@ -32,7 +32,7 @@ for ($i = 1; $i < 100; $i++) {
|
|
EOT;
|
|
|
|
$tester = new FPM\Tester($cfg, $code);
|
|
-$tester->start();
|
|
+$tester->start(extensions: ['zend_test']);
|
|
$tester->expectLogStartNotices();
|
|
$tester->request()->expectEmptyBody();
|
|
for ($i = 1; $i < 100; $i++) {
|