1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From: =?utf-8?q?David_Pr=C3=A9vot?= <taffit@debian.org>
Date: Tue, 15 Apr 2025 09:27:30 +0200
Subject: =?utf-8?q?Don=E2=80=99t_run_testFetchLongBlob?=
MIME-Version: 1.0
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit
This test can’t run with PHPUnit 12 as is, and is already failing under
i386 on some conditions.
Debian-Bug: https://bugs.debian.org/1103085
---
tests/Functional/StatementTest.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/Functional/StatementTest.php b/tests/Functional/StatementTest.php
index da3125f..ec6bd94 100644
--- a/tests/Functional/StatementTest.php
+++ b/tests/Functional/StatementTest.php
@@ -93,7 +93,7 @@ class StatementTest extends FunctionalTestCase
], $result->fetchAllNumeric());
}
- #[RequiresPhpunit('< 12')]
+ #[RequiresPhpunit('< 11')]
public function testFetchLongBlob(): void
{
if (TestUtil::isDriverOneOf('pdo_oci')) {
|