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
29
30
31
32
33
34
35
36
37
|
From 3f4aa956c28ab1a67d0ed8d382e3c09d3a1337c2 Mon Sep 17 00:00:00 2001
From: Sebastian Bergmann <sb@sebastian-bergmann.de>
Date: Mon, 13 Jul 2026 13:39:32 +0200
Subject: [PATCH] Update dependencies
---
composer.json | 2 +-
composer.lock | 16 ++++++++--------
.../Constraint/String/StringContainsTest.php | 2 +-
3 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/composer.json b/composer.json
index a06542e165..5c688361a3 100644
--- a/composer.json
+++ b/composer.json
@@ -47,7 +47,7 @@
"sebastian/comparator": "^8.3.0",
"sebastian/diff": "^9.0",
"sebastian/environment": "^9.3.2",
- "sebastian/exporter": "^8.1.0",
+ "sebastian/exporter": "^8.1.1",
"sebastian/file-filter": "^1.0",
"sebastian/git-state": "^1.0",
"sebastian/global-state": "^9.0.1",
diff --git a/tests/unit/Framework/Constraint/String/StringContainsTest.php b/tests/unit/Framework/Constraint/String/StringContainsTest.php
index 30096405d3..d977532351 100644
--- a/tests/unit/Framework/Constraint/String/StringContainsTest.php
+++ b/tests/unit/Framework/Constraint/String/StringContainsTest.php
@@ -174,7 +174,7 @@ public static function providesEvaluationCases(): array
'Both the needle and haystack length in the failure message partly account for \r line endings given line endings are ignored' => [
false,
- "Failed asserting that 'Some haystack with\\r\n line\\n\n endings \\n\\r\n' [ASCII](length: 36) contains \"Some needle with\n line\n endings \n\n\" [ASCII](length: 34).",
+ "Failed asserting that 'Some haystack with\\r\n line\\n\n endings \\n\n\\r\n' [ASCII](length: 36) contains \"Some needle with\n line\n endings \n\n\" [ASCII](length: 34).",
false,
true,
/**
|