diff options
author | Remi Collet <remi@remirepo.net> | 2024-01-11 16:14:29 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-01-11 16:14:29 +0100 |
commit | f22deba518cffc6858e3d90b04a3e608755c070b (patch) | |
tree | 6ffad463568170057697defca91dc0155b47dd0c /69.patch | |
parent | de124c590bc5b0e34cfad8f91ed19861b7d29463 (diff) |
test build for https://github.com/php/pecl-search_engine-solr/pull/69
Diffstat (limited to '69.patch')
-rw-r--r-- | 69.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/69.patch b/69.patch new file mode 100644 index 0000000..bab9534 --- /dev/null +++ b/69.patch @@ -0,0 +1,23 @@ +From 7eb16d71722a54e04c8a309f5588c02f45680e9a Mon Sep 17 00:00:00 2001 +From: Birgir Haraldsson <biggi@stefna.is> +Date: Thu, 11 Jan 2024 16:07:40 +0100 +Subject: [PATCH] Fix 019 getdebug test when response has "processing" + +--- + tests/019.solrclient_getdebug.phpt | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/tests/019.solrclient_getdebug.phpt b/tests/019.solrclient_getdebug.phpt +index b8e07898..ff4b66d6 100644 +--- a/tests/019.solrclient_getdebug.phpt ++++ b/tests/019.solrclient_getdebug.phpt +@@ -33,7 +33,8 @@ foreach ( $lines as $line) { + 0 === strpos($line, 'Hostname') || + 0 === strpos($line, 'TCP_NODELAY') || + 0 === strpos($line, 'Accept-Encoding') || +- 0 === strpos($line, 'Curl_http_done') ++ 0 === strpos($line, 'Curl_http_done') || ++ 0 === strpos($line, 'processing:') + ) { + $print = false; + } else { |