summaryrefslogtreecommitdiffstats
path: root/0001-fix-test-for-php-8.5-194.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2025-10-02 09:19:54 +0200
committerRemi Collet <remi@php.net>2025-10-02 09:19:54 +0200
commit351c5556c41b3d11e4a05960f0771d5f354ac90b (patch)
treeed9f32cd228d99e51f42dfa4c750744d65bd2060 /0001-fix-test-for-php-8.5-194.patch
parent31bd6a12d71424e5a2f15e7f002c72beedc414c1 (diff)
update to 1.2.1HEADmaster
Diffstat (limited to '0001-fix-test-for-php-8.5-194.patch')
-rw-r--r--0001-fix-test-for-php-8.5-194.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/0001-fix-test-for-php-8.5-194.patch b/0001-fix-test-for-php-8.5-194.patch
deleted file mode 100644
index e5bd230..0000000
--- a/0001-fix-test-for-php-8.5-194.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 3953640bf49ac099f383d2aa26da5bf1910561c8 Mon Sep 17 00:00:00 2001
-From: Brett McBride <brett.a.mcbride@gmail.com>
-Date: Mon, 25 Aug 2025 22:49:36 +1000
-Subject: [PATCH] fix test for php 8.5 (#194)
-
-Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in /home/runner/work/opentelemetry-php-instrumentation/opentelemetry-php-instrumentation/ext/tests/multiple_hooks_modify_params.php
----
- ext/tests/multiple_hooks_modify_params.phpt | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/ext/tests/multiple_hooks_modify_params.phpt b/ext/tests/multiple_hooks_modify_params.phpt
-index 136ebe5..90e92f9 100644
---- a/ext/tests/multiple_hooks_modify_params.phpt
-+++ b/ext/tests/multiple_hooks_modify_params.phpt
-@@ -11,7 +11,7 @@ function helloWorld($a) {
- var_dump($a);
- }
-
--helloWorld('a');
-+helloWorld(1);
- ?>
- --EXPECT--
--string(1) "c"
-+int(3)
---
-2.51.0
-